I am using the Import Data tool that is available on the Home tab to import csv files - 1200 rows with 35 columns - all numeric with .000 decimals. Matlab imports the file but it is very slow. I'd like to speed it up. Any ideas?
3 views (last 30 days)
Show older comments
I am importing csv files - using 2012 and 2013 version of Matlab. The files import slowly using the import data tool off the Home tab. Any idea how I can speed it up? My files are single sheet cdv with 1200 rows of ~35 columns - numeric data carried to .000. Thanks!
2 Comments
Answers (2)
per isakson
on 28 Mar 2014
If it's pure numerical data try
M = dlmread(filename, delimiter)
and
S = load(filename,'-ascii')
0 Comments
Image Analyst
on 28 Mar 2014
Edited: Image Analyst
on 28 Mar 2014
Have you tried readtable()?
t = readtable(fullFileName);
Requires 2013b or later I believe.
0 Comments
See Also
Categories
Find more on Other Formats 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!