Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は matlab を介して、特定の式の後に txt ファイルからデータのテーブルを読み取り、たとえば次のように不要な行をいくつか読みたかったのですAA.txt。
AA.txt
学生に関する情報 :
AAAA BBBB 1 10 100 2 3 15
! ! ! 行数
10 6 9
私は、「学生に関する情報」という表現、スキップされた行数2、および目的のマトリックスの列3と行10の数のような情報を持っています。
私の理解が正しければ、最初の 3 行をスキップして (ヘッダーと仮定して)、残りを読んでください。
私は次の手順に従います。
fid = fopen(filename,'r'); A = textscan(fid,'%f %f %f','HeaderLines',3,'Delimiter','\r\n');
私は現在 にアクセスできませんがMATLAB、うまくいくと信じています。
MATLAB