필터 지우기
필터 지우기

Hi! Could somebody tell me why few days ago this code worked and now I tried it again and gives me this error? Thank you!

조회 수: 1 (최근 30일)
fmt=['PG10 ' repmat('%f ',1,8)];
fid=fopen('sp3data.txt');
PG10=[];
while ~feof(fid)
l=fgetl(fid); % read a record
if strfind(l,'PG10')
PG10=[PG10; cell2mat(textscan(l,fmt,'collectoutput',1))];
end
end
fclose(fid);
Error using feof
Invalid file identifier. Use fopen to generate a valid file identifier.

답변 (1개)

Stephen23
Stephen23 2017년 12월 9일
편집: Stephen23 2017년 12월 9일
Replace the fopen line with this:
[fid,msg] = fopen('sp3data.txt');
assert(fid>=3,msg)
And then read the displayed message. Most likely fopen cannot open the file because there is no such file in the specified location.

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by