Nearest integer function
In computer science, the nearest integer function of real number x denoted variously by ,[1] , ,[2] nint(x), or Round(x), is a function which returns the nearest integer to x. To avoid ambiguity when operating on half-integers, a rounding rule must be chosen. On most computer implementations, the selected rule is to round half-integers to the nearest even integer—for example,
- etc.
This is in accordance with the IEEE 754 standards and helps reduce bias in the result.
There are many other possible rules for tie breaking when rounding a half integer include rounding up, rounding down, rounding to or away from zero, or random rounding up or down.
See also
References
- ↑ Weisstein, Eric W. "Nearest Integer Function". MathWorld. Retrieved 2008-08-15.
- ↑ J.W.S. Cassels (1957). An introduction to Diophantine approximation. Cambridge Tracts in Mathematics and Mathematical Physics. 45. Cambridge University Press. p. 1.
This article is issued from Wikipedia - version of the 5/5/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.