Class floor

All Implemented Interfaces:
ArithFunction, Serializable

public class floor extends DefaultArithFunction

Function: math.floor(N): encapsulates java Math.floor(N), returns the largest double value that is not greater than the argument and is equal to a mathematical integer.

Examples:

  • math.floor(3.1): returns 3.
  • math.floor(3.9): returns 3.
See Also: