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