How to read data one by one
2 ビュー (過去 30 日間)
古いコメントを表示
Joe kiao
2015 年 1 月 22 日
コメント済み: Matz Johansson Bergström
2015 年 1 月 23 日
The file is like
2
0.5 0.6 0.7
0.0 -2.5 6.3
The first line is the number of points. The others are the coordinates of those points x y z.
In C++, we have
ifstream fin("coordinate.txt");
fin>>num;
for(int i=0; i<num; i++)
{
fin>>array[i][0]>>array[i][1]>>array[i][2];
}
What are the corresponding code in MATLAB?
0 件のコメント
採用された回答
Matz Johansson Bergström
2015 年 1 月 23 日
It should be sufficient to write
filename='coordinates.txt';
[x,y,z] = dataread('file', filename, '%f%f%f', 'delimiter',...
' ', 'headerlines', 1);
4 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Workspace Variables and MAT-Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!