|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
clc;close all;clear all
file = textread('gfet_vds.lis','%s','whitespace','','delimiter','\n');
[Nun_row,Nun_col]=size(file);
s=file(80);
c=cellstr(s);
s=file(485);
d=cellstr(s);
p=0;q=0;
format long;
for i=1:Nun_row
b=cellstr(file(i));
if(strcmp(c,b))
p=p+1;
for j=1:401
data1=file(i+j);
s=char(data1);
data2=str2num(s);
M1(j,1,p)=data2(1);
M1(j,2,p)=data2(2);
M1(j,3,p)=data2(3);
M1(j,4,p)=data2(4);
M1(j,5,p)=data2(5);
end
end
b=cellstr(file(i));
if(strcmp(d,b))
q=q+1;
for j=1:401
data1=file(i+j+1);
s=char(data1);
data2=str2num(s);
M1(j,6,p)=data2(2);
end
end
end |
|