我用這個:如何使用textscan在Matlab中讀取多行?
weights=fopen('indices.txt');
weights=textscan(weights, '%d %d %d %d %d %d %d')
但這只是我的讀取文件的第一行。 我的文件看起來像這樣:
0 90 100 5 0 0 0 (class)
19 5 0 0 0 0 0 (class2)
5 5 0 0 0 0 0 (class3)
-10 -5 0 0 0 0 0 (class4)
而且我也不需要在括號什麼
非常感謝!