Matlab's Strange Behavior
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
>> fprintf('%4d, %1.6f, %1.6f\n',1, 1.1, 1.2)
1, 1.100000, 1.200000
>> disp(fprintf('%4d, %1.6f, %1.6f\n',1, 1.1, 1.2))
1, 1.100000, 1.200000
25
Could anybody shed some light on this behavior? I don't know if I am doing anything wrong here, redundant of course. The function 'sprintf()' works as expected and does not print any other number not in the argument list.
It is not always '25', I have seen 23 and something else. I cannot remember or reproduce the third number, even after repeated attempts.
Thanks!
0 comentarios
Respuestas (1)
Walter Roberson
el 1 de Mayo de 2013
fprintf() returns the number of bytes written. You would get the same result from
length(sprintf('%4d, %1.6f, %1.6f\n',1, 1.1, 1.2))
However, if you are writing to a file, fprintf() might end up translating into a different character set based upon the encoding set for the file; also, if the file is set as a text file ('wt') then on an MS Windows system the \n might get translated to 2 bytes.
3 comentarios
Image Analyst
el 1 de Mayo de 2013
Correct. I don't even use disp. If I want the variable, I use fprintf() or simply just put the variable name all by itself on its own line. Why bother with disp()?
Walter Roberson
el 1 de Mayo de 2013
disp() cancels the line printing out the name of the variable that would be given by putting the variable name all by itself. Putting the variable name all by itself may be required if the class of the variable is unknown or if it contains mixed data or if is a cell array... or structure... or object...
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!