Skip to content
Prev 314565 / 398502 Next

Question on Round function

On 03-01-2013, at 18:44, Christofer Bogaso <bogaso.christofer at gmail.com> wrote:

            
?round

In the Details section you will find:


Note that for rounding off a 5, the IEC 60559 standard is expected to be used, ?go to the even digit?. Therefore round(0.5) is 0 and round(-1.5)is -2. However, this is dependent on OS services and on representation error (since e.g. 0.15 is not represented exactly, the rounding rule applies to the represented number and not to the printed number, and so round(0.15, 1) could be either 0.1 or 0.2).


Berend