How can i read 14,000 data points from a file?
1 回表示 (過去 30 日間)
古いコメントを表示
i read the datapoints by using importdata... but this is not suited for large number of data points....i have to design a notch filter with this data....so i have to read 14000 data points from a file.... what i have to do??
4 件のコメント
Walter Roberson
2014 年 2 月 12 日
How many columns per line? What separator between columns? Are there any headers? What would a typical line look like?
採用された回答
Walter Roberson
2014 年 2 月 12 日
fid = fopen('YourFile.txt');
datacell = textscan(fid, '%f%f', 14000, 'CollectOutput', 1);
fclose(fid);
youdata = datacell{1};
3 件のコメント
Walter Roberson
2014 年 2 月 13 日
This is the reason I asked about the file format.
fid = fopen('YourFile.txt'); datacell = textscan(fid, '%*f%f%f%*f%*f%*f%*f', 14000); fclose(fid); A = datacell{1}; B = datacell{2}; C=A-B;
その他の回答 (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!