round
round — rounds a real number up or down to the nearest integer.
round (number)
numberA number.
The nearest integer to the number.
This function rounds its argument to the nearest integer. Values of .5 are rounded up to the next highest integer.
Gamma>round(8.73);9Gamma>round(2.21);2Gamma>round(5.5);6Gamma>round(5.49);5Gamma>