Importing CSV files in MATLAB
Show older comments
Suppose I have the following lines in a .csv file:
Date,Time,Ch1:
09/07/2007,12:26:51.000,10.684
09/07/2007,12:26:51.005,14.957
If one used an older version of Excel, these would automatically be placed in three columns without the commas. However, the above is not the case.
I was wondering how to convert these strings into an array.
Accepted Answer
More Answers (1)
Iain
on 11 Jun 2013
0 votes
[n, t, r] = xlsread(filename);
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!