Exclude first 2 rows of .dat file when using load
3 ビュー (過去 30 日間)
古いコメントを表示
I want to exclude the first two rows when using load
data = load('file.dat')
x = data(3:end,1);
y = data(3:end,2);
The one below obviously gives me a ASCII file error. But you get the idea of what I want.
0 件のコメント
回答 (1 件)
madhan ravi
2018 年 11 月 19 日
編集済み: madhan ravi
2018 年 11 月 19 日
convert your .dat to .txt and then follow your method
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!