• JMP 12 Online Documentation (English)
    • Discovering JMP
    • Using JMP
    • Basic Analysis
    • Essential Graphing
    • Profilers
    • Design of Experiments Guide
    • Fitting Linear Models
    • Specialized Models
    • Multivariate Methods
    • Quality and Process Methods
    • Reliability and Survival Methods
    • Consumer Research
    • Scripting Guide
    • JSL Syntax Reference
    • JMP iPad Help
    • JMP Interactive HTML
  • Capabilities Index
  • JMP 13.2 Online Documentation

JMP Support 919.677.8008 (US)

Documentation Feedback
Your feedback is important to us. us any comments about our documentation.

Using JMP • Formula Functions Reference • Numeric Functions
Previous
 • 
Next
Numeric Functions
You can create a formula that contains arithmetic operators that are commonly used in formulas. See the JSL Syntax Reference for details about syntax.
Abs
Returns a positive number of the same magnitude as the value of its argument. For example, |5| and |–5| both result in 5.
Modulo
Returns the remainder when the second argument is divided into the first. For example, Modulo(6, 5) results in 1.
Ceiling
Returns the smallest integer greater than or equal to its argument. For example, Ceiling(2.3) results in 3, while Ceiling(–2.3) results in –2.
Floor
Returns the largest integer less than or equal to its argument. For example, Floor(2.7) results in 2, but Floor(–0.5) results in –1.
Round
Rounds the first argument to the number of decimal places given by the second argument. For example, Round(3.554, 2) rounds to 3.55 and Round(3.555, 2) rounds to 3.56.