- A file identifier obtained from fopen.
- 1 for standard output (the screen).
- 2 for standard error.
fprrintf MATLAB R2013a not working
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Yasmin Tamimi
am 29 Sep. 2014
Kommentiert: Stephen23
am 29 Sep. 2014
Hey everyone,
I'm sending my values to a txt file in MATLAB R2013a but the txt file remains empty and all the printing is done in the command window! Does anyone know why is this happening? And how can I print the values in a txt file?
fid = fopen('Code.txt','w');
fprintf('start a new cycle \n');
fprintf('t = %0.5f\t total_diss %0.5f\n', t, total_diss)
fclose(fid);
1 Kommentar
Stephen23
am 29 Sep. 2014
Syntax
fprintf(fileID,formatSpec,A1,...,An)
...
Input Arguments
fileID — File identifier1 (default) | 2 | scalar
File identifier, specified as one of the following:
Akzeptierte Antwort
Mischa Kim
am 29 Sep. 2014
Bearbeitet: Mischa Kim
am 29 Sep. 2014
Yasmine, use
fid = fopen('Code.txt','w');
fprintf(fid,'start a new cycle \n');
fprintf(fid,'t = %0.5f\t total_diss %0.5f\n', t, total_diss)
fclose(fid);
instead. Note that you need to add the fileID fid to the fprintf command.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Low-Level File I/O 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!