How can i make use of csv file format in my matlab coding
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
i have vibration data store from machine in csv file format. i tried to load data to Matlab by command " load vib_data.csv" but it fails to work.
1 Kommentar
Akzeptierte Antwort
Shane
am 19 Sep. 2012
Yes, csvread will be the function to use as it brings in all of the data into a single matrix without having to convert it from a cell array.
A = csvread('filepath\filename.csv')
Please keep in mind that csvread works with numeric data only. I would assume that your vibration data is most likely all numeric anyways but any headers or annotations that are present in the csv will not be imported by matlab.
5 Kommentare
Thomas
am 19 Sep. 2012
How big is your data and how much memory do you have on the system.. Read only as much of the data that you need. This might mean that you have to write your own parser, but that's not too hard with the indicated file format.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!