clear;
clc;
fid=fopen('in.txt','r');
fid1=fopen('out.txt','r');
[p,count]=fscanf(fid,'%1g,%1g,%1g,%1g,%1g,%1g',[6,inf]);
[t,count]=fscanf(fid1,'%1g',[1,inf]);
fcolse(fid);
fclose(fid1);
t=(t/10)*2-0.1;
。。。。。。
错误提示:
??? Error using ==> fscanf
Invalid file identifier -1.
如果没有这个文件,fopen返回的应该是-1,所以它会提示invalid file identifier.
一周热门 更多>