fid = fopen('filename.txt');C = textscan(fid, '%f %f %f', 'HeaderLines', 84);fclose(fid);HeaderLines可以指定跳过文件开头多少行,例子中是跳过前84行,从第85行开始读取。读到的数据存放在一个cell中,可以用cell2mat()转换成数组。