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 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (2)
per isakson
am 28 Mär. 2014
If it's pure numerical data try
M = dlmread(filename, delimiter)
and
S = load(filename,'-ascii')
0 Kommentare
Image Analyst
am 28 Mär. 2014
Bearbeitet: Image Analyst
am 28 Mär. 2014
Have you tried readtable()?
t = readtable(fullFileName);
Requires 2013b or later I believe.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Other Formats 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!