| Applying science to business management |
  
floor
Format: floor( x )
Arguments: (num) x Any real or complex number
Returns: (num) The value of x rounded down to
the nearest integer
Description: Floor rounds a number down. If x is
a complex number, both the real and imaginary components are
rounded separately.
Examples: floor(3.14) = 3
floor(-3.14) = -4
floor(5) = 5
floor(7.6+3.2i) = 7+3i
See Also: ceil, integer, round
|