how to round the decimal point?
13 次查看(过去 30 天)
显示 更早的评论
Hai,
I need to round the decimal number to 2 decimal places. What is the function in matlab, to the above rounding off. Looking for your reply.
BSD
0 个评论
回答(3 个)
Jan
2011-9-27
4 个评论
Walter Roberson
2011-9-27
>> sprintf('%.99g\n',round(0.1698 * 100) / 100)
ans =
0.1700000000000000122124532708767219446599483489990234375
>> num2hex(round(0.1698 * 100) / 100 )
ans =
3fc5c28f5c28f5c3
>> num2hex(round(0.1698 * 100) / 100 - 8*eps(.01))
ans =
3fc5c28f5c28f5c2
If you compare the hex of the two floating point values, you will note that this second value is the first representable value smaller than the original value
>> sprintf('%.99g\n',round(0.1698 * 100) / 100 - 8*eps(0.01))
ans =
0.169999999999999984456877655247808434069156646728515625
and you can see from the extended printout that it is below 0.17 whereas the other value was above 0.17. We have thus experimentally demonstrated that there is no exact representation in binary floating point arithmetic for 0.17 exactly.
Jan
2011-9-28
@BSD: Does Walter's correct argument concern your work? Or is 0.1700000000000000xyz... accurate enough for your demands?
Walter Roberson
2011-9-27
This is not possible in binary floating point arithmetic, unless the rounded fraction happens to end up being 0.0, 0.25, 0.5, or 0.75
Binary floating point arithmetic cannot exactly represent the fraction 1/100 in any finite amount of storage, for the same reason that decimal arithmetic cannot exactly represent the fraction 1/7 in any finite amount of storage.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!