Matlab's Strange Behavior

2 views (last 30 days)
Gurudatha Pai
Gurudatha Pai on 1 May 2013
>> 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!

Answers (1)

Walter Roberson
Walter Roberson on 1 May 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 Comments
Image Analyst
Image Analyst on 1 May 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
Walter Roberson on 1 May 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...

Sign in to comment.

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!