Math Function Descriptions
The following table describes the functions that appear in the math functions list.
Function
Description
ceil(x)
Returns the smallest integer >= x
floor(x)
Returns the largest integer <= x
abs(x)
Returns the absolute value of x
inv(x)
Returns the inverse (1 / x) of x
exp(x)
Returns the exponential
log(x)
Returns the Base 10 logarithm of x
ln(x)
Returns the natural logarithm of x
square(x)
Returns x * x
pow(x, y)
Returns x raised to the power of y (xy)
sqrt(x)
Returns the square root of x (√x)
root(x,y)
Returns the x-th root of y (x√y)