help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: fprintf bug?


From: Quentin Spencer
Subject: Re: fprintf bug?
Date: Wed, 09 Aug 2006 14:47:47 -0500
User-agent: Thunderbird 1.5.0.5 (X11/20060808)

frank wang wrote:
Hi,
While using Octave, I noticed a problem with fprintf. It maybe a bug and I need expert's opinion. Here is the code it does not work. It will print the output to a file named e(fid); u is a complex number. In this example, it is u = 0.0044312 + 0.0044312i fid = fopen('test_report.txt','w');
for (ii = 0:15)
ii
u fprintf(fid,'%d %f\n', ii, u);
end
fclose(fid)
If we add ; after u, then it will print the data to test_report.txt. Here is the code: fid = fopen('test_report.txt','w');
for (ii = 0:15)
ii
u;
   fprintf(fid,'%d     %f\n', ii, u);
end
fclose(fid)
Thanks frank

You're saying you get what you expect in the second example, but not in the first? I tried both cases and got the same result in octave 2.9.7.

Quentin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]