使用textscan读取某些行

时间:2014-06-02 04:19:46

标签: matlab textscan

我正在尝试使用Matlab中的textscan从文本文件中读取数据。目前,代码在下面提供读取行1到4.我需要它来读取5到8行,然后是9到13行,依此类推。我怎么做到这一点?

fileID=fopen(fileName);
num_rows=4;
nHeaderLines = 2; 
formatSpec = '%*s %*s %s %s %*s %*s %*s %f %*s';
dataIn = textscan(fileID,formatSpec,num_rows,'HeaderLines',nHeaderLines, 'Delimiter',',' );
fclose(fileID);

1 个答案:

答案 0 :(得分:0)

使用

file = fopen('myfile');             
content = textscan(file,'%s','delimiter','\n');
fclose(file);

并且您将文件中的所有行都作为字符串的单元格数组。然后获取您想要的任意数量的行并按照您的喜好处理它们。