zlx860424 发表于 2009-5-28 21:29

如何从文件中每隔10行去读取文件

fid=fopen('D:\rock physics\Data\vppro.txt','r');%%读取vp-porosity数据
p=0;
while ~feof(fid)
    p=p+1;
    tline = fgetl(fid);
    w=sscanf(tline,'%f');
    depth(p)=w(1);
    phi(p)=w(2)/100;
    vp(p)=w(3)/1000;
end
这样是每一行都读数据,如何每隔10行去读取数据呢,请教高手

sogooda 发表于 2009-5-29 09:37

fid=fopen('D:\rock physics\Data\vppro.txt','r');%%读取vp-porosity数据
p=0;
while ~feof(fid)
    p=p+10;
    tline = fgetl(fid);
    w=sscanf(tline,'%f');
    depth(p)=w(1);
    phi(p)=w(2)/100;
    vp(p)=w(3)/1000;
end
页: [1]
查看完整版本: 如何从文件中每隔10行去读取文件