Name |
Syntax |
Description |
---|---|---|
Abs |
Abs(NUMBER) |
Returns the absolute value of a single-precision floating-point number. |
Exp |
Exp(POWER) |
Returns e raised to the specified power. |
Log |
Log(NUMBER) |
Returns the natural (base e) logarithm of a specified number. |
Log10 |
Log10(NUMBER) |
Returns the base 10 logarithm of a specified number. |
Pow |
Pow(NUMBER, POWER) |
Returns a specified number raised to the specified power. |
Round |
Round(NUMBER) |
Rounds a double-precision floating-point value to the nearest integer. |
Sqrt |
Sqrt(NUMBER) |
Returns the square root of a specified number. |
Int |
Int(NUMBER) |
Returns an integer, obtained by truncating (not rounding!) the provided number. |