如何用MATLAB读取TXT文件并存入多个数组中
1个回答
展开全部
%%
先打开文件
[filename,filepath]=uigetfile('*.txt','Select
Input
file');
file
=
[filepath
filename];
fid
=
fopen(file,'rt');
if
fid
==
-1
('Error
opening
the
file')
end
%%读取文件
while
1
nextline
=
fgetl(fid);
%读第一行
if
~isstr(nextline),
break,
end
%读到最后跳出
disp(nextline);%这行可以不要
a
=
sscanf(nextline,
'
%f
%f
');%读取数据,
end
end
先打开文件
[filename,filepath]=uigetfile('*.txt','Select
Input
file');
file
=
[filepath
filename];
fid
=
fopen(file,'rt');
if
fid
==
-1
('Error
opening
the
file')
end
%%读取文件
while
1
nextline
=
fgetl(fid);
%读第一行
if
~isstr(nextline),
break,
end
%读到最后跳出
disp(nextline);%这行可以不要
a
=
sscanf(nextline,
'
%f
%f
');%读取数据,
end
end
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询