.csv file data extraction
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a database of experiment .csv files and the data of interest does not start until row 49 and continues down each column for n rows (stops when data collection was ended). I would like to read the file and create an array for each column, then plot the results individually. Note: column A is a timestamp and subsequent columns are recorded data ex: Temperature. Any help would be appreciated, I am a rookie at this Matlab game.
1 comentario
per isakson
el 11 de En. de 2015
textscan, Read formatted data from text file or string is one possibility. In recent Matlab release, textscan has a new feature to parse timestamp.
Respuestas (1)
Umakant
el 13 de En. de 2015
You can read the data and store it in a table. Please refer to the following link for information on using the ‘readtable’ function:
The data is stored columnwise as desired. We can access the table to do further computations. Please refer to the following link for more information on accessing data in a table:
0 comentarios
Ver también
Categorías
Más información sobre Text Files en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!