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?
4 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (2 件)
per isakson
2014 年 3 月 28 日
If it's pure numerical data try
M = dlmread(filename, delimiter)
and
S = load(filename,'-ascii')
0 件のコメント
Image Analyst
2014 年 3 月 28 日
編集済み: Image Analyst
2014 年 3 月 28 日
Have you tried readtable()?
t = readtable(fullFileName);
Requires 2013b or later I believe.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Other Formats についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!