code shows error in function
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am using following code to write text file.. This is the part of a function.. and it works...
fid = fopen(sprintf('Image%d.txt',imageNumber),'wt');
for j=1:length(y),
fprintf(fid,'%f %f\n',y(j),x(j));
end
Now when i am using following code to read the same file then it shows error..
why.?
C = textscan('Image%d.txt',imageNumber);
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 21 Dez. 2012
You do not textscan() a file name: you textscan() a file identifier created by fopen()
fid = fopen(sprintf('Image%d.txt',imageNumber),'rt');
C = textscan(fid, '%f%f');
fclose(fid)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Standard File Formats finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!