Rounding towards zero or from zero
20 次查看(过去 30 天)
显示 更早的评论
Hi all; I want to round 3.6 to 3 but funny enough all the 'tozero' and 'fromzero' tiebreakers are returning the same answer i.e 4 which i dont want. How can this issue be fixed?
x=3.6
y=round(x,"TieBreaker","tozero")
z=round(x,"TieBreaker","fromzero")
0 个评论
采纳的回答
Les Beckham
2022-9-26
编辑:Les Beckham
2022-9-26
There is no tie involved in rounding 3.6. If you wish, you can use floor instead:
floor(3.6)
If x was 3.5 instead, that would be a tie:
x = 3.5;
y=round(x,"TieBreaker","tozero")
z=round(x,"TieBreaker","fromzero")
更多回答(3 个)
Steven Lord
2022-9-26
The tiebreaker methods only apply when the quantity to be rounded is halfway between the two numbers to which it could be rounded. So if you had 3.5 that's halfway between 3 and 4 and the tiebreaker would determine to which of those numbers 3.5 gets rounded.
round(3.5, 'TieBreaker', 'tozero')
round(3.5, 'TieBreaker', 'fromzero')
There's no tie to be broken if you're rounding 3.6.
There are other rounding functions that you may want to use instead of round. See their help or documentation pages for more information on each function's specific behavior.
[fix(3.6), floor(3.6), round(3.6), ceil(3.6)]
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Pulsed Waveforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!