import multi type data in MATLAB
1 回表示 (過去 30 日間)
古いコメントを表示
How I can import a text file in MATLAB including 256 columns: first column is string and other columns are numeric data.
0 件のコメント
採用された回答
Gerd
2011 年 6 月 29 日
Hi Sarah,
depending on your specific file you can use
fid= fopen('File.txt');
textscan(fid,'%s%f.....');
fclose(fid);
Gerd
6 件のコメント
Jan
2011 年 6 月 29 日
Data = textscan(fid,['%s' repmat('%f',1,255)]);
Then Data is a cell, which contains the different columns as elements. See "help textscan".
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Large Files and Big Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!