Name | Operand Type | Result Type | Description |
abs(n) | all numeric types and money | same as n | Absolute value of n |
atan(n) | all numeric types and money | float | Arctangent of n; returns a value from (-pi/2) to pi/2 |
cos(n) | all numeric types and money | float | Cosine of n; returns a value from -1 to 1 |
exp(n) | all numeric types and money | float | Exponential of n |
log(n) | all numeric types and money | float | Natural logarithm of n |
mod(n,b) | i4, i2, i1 | same as b | n modulo b. The result is the same data type as b |
sin(n) | all numeric types and money | float | Sine of n; returns a value from -1 to 1 |
sqrt(n) | all numeric types and money | float | Square root of n |