Function‘round’. Numerical calculation question
Show older comments
Problem recurrence:
>> round(((6/40000)*10000))
ans =
1
but,
>> round(1.500000000000000)
ans =
2
Why is 1.5 such a value appearing when rounding off?The same value calculation results are different.
Answers (3)
Bruno Luong
on 17 Nov 2018
Edited: Bruno Luong
on 17 Nov 2018
Welcome to the work of floating point arithmetic
>> (6/40000)*10000-1.5
ans =
-2.2204e-16
>>
So actually the calculation of (6/40000)*10000 returns value stricly less than 1.5=3/2. Therefore what you have observed with round is explained.
2 Comments
yang li
on 17 Nov 2018
Walter Roberson
on 17 Nov 2018
When you think of 1/10 in binary it can help to think about 1/7 in decimal, in that 1/7 decimal is an infinitely repeating multidigit pattern . If you truncate to any finite number of digits and then multiply back by 7 then you will not get exactly 1. Exactly the same mathematics reasons that lead 1/7 decimal to be infinite lead 1/10 to be infinite repeating multiple digits in binary. It is not a "quality of implementation" issue but rather a fundamental limitation of using any finite number of digits in a "base" numeric representation instead of using rational numbers as the representation .
Walter Roberson
on 17 Nov 2018
0 votes
1/10 is not exactly representable in binary floating point so you would need to calculate carefully to figure what is being computed.
But algebraically the first of those would be round(2/4) which would be round(0.5) which would round up to 1 and likewise round(1.5) rounds up to 2 so the results you see happen to agree with the algebraic results . Other combinations that are algebraically the same could come out differently because of 1/10 not being exactly representable.
1 Comment
yang li
on 17 Nov 2018
Categories
Find more on Logical 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!