octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #45639] Formatting float as integer is not wor


From: Michael Godfrey
Subject: [Octave-bug-tracker] [bug #45639] Formatting float as integer is not working any more
Date: Mon, 27 Jul 2015 17:54:28 +0000
User-agent: Mozilla/5.0 (X11; Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.89 Safari/537.36

Follow-up Comment #2, bug #45639 (project octave):

This appears to be a regression and compatibility
problem. The change may have been made for Matlab
compatibility Matlab fprintf shows 3.4.

It is also not correct that Octave does not round:

Octave shows:

>> x=3.4;
>> printf('%1.0d  roundn',x);
3  round
>> x=3.6;
>> printf('%1.0d  roundn',x);
4  round
>> 

Matlab does show the result as e-format:
>> fprintf('%1.0d    roundn',x)
4e+00    round
>> 

But, this is unrelated to the report that you raised.

do you still see a problem different from rounding?


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?45639>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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