Name | Description
| Usage
|
abs | Absolute value
| "abs(x)", absolute value of x
|
acos | Arc Cosine
| "acos(x)", arc cosine of the value x
|
asin | Arc Sine
| "asin(x)", arc sine of the value x
|
atan | Arc Tangent
| "atan(x)", arc tangent of the value x
|
ceil | Ceil value
| "ceil(x)", value of x rounded up
|
cos | Cosine
| "cos(x)", cosine of the value of x
|
cosh | Hyperbolic Cosine
| "cosh(x)", hyperbolic cosine of the value x
|
deg | Radiant to Degree convert
| "deg(x)", the degree value of radiant value x
|
exp | Exponent
| "exp(x)", value of constant e raised to the power of x
|
floor | Floor value
| "floor(x)", value of x rounded down
|
ln | Natural logarithm
| "ln(x)", natural logarithm of x
|
max | Maximum of two values
| "max(x,y)", returns x if (x > y) or returns y if (y > x)
|
min | Minimum of two values
| "min(x,y)", returns x if (x < y) or returns y if (y < x)
|
rad | Degree to Radiant convert
| "rad(x)", the radiant value of degree value x
|
rand | Random value
| "rand(x)", returns a random floating point value between 0 and x
|
sin | Sine
| "sin(x)", sine of the value x
|
sinh | Hyperbolic Sine
| "sinh(x)", hyperbolic sine of the value x
|
sqrt | Square root
| "sqrt(x)", square root of the value x
|
tan | Tangent
| "tan(x)", tangent of the value x
|
tanh | Hyperbolic Tangent
| "tanh(x)", hyperbolic tangent of the value x
|