| name | description |
| abs | Absolute-value function. The absolute value of a number is the number without its sign. |
| aCos | Arccosine function. The arccosine is the angle whose cosine is number. |
| arrayAvg | Calculates the average of the values in an array. |
| arraySum | Array sum function. |
| aSin | Determines the arcsine of a number. The arcsine is the angle whose sine is number. |
| atn | Arctangent function. The arctangent is the angle whose tangent is number. |
| bitAnd | Performs a bitwise logical AND operation. |
| bitMaskClear | Performs a bitwise mask clear operation. |
| bitMaskRead | Performs a bitwise mask read operation. |
| bitMaskSet | Performs a bitwise mask set operation. |
| bitNot | Performs a bitwise logical NOT operation. |
| bitOr | Performs a bitwise logical OR operation. |
| bitSHLN | Performs a bitwise shift-left, no-rotation operation. |
| bitSHRN | Performs a bitwise shift-right, no-rotation operation. |
| bitXor | Performs a bitwise logical XOR operation. |
| ceiling | Determines the closest integer that is greater than a specified number. |
| cos | Calculates the cosine of an angle that is entered in radians. |
| decrementValue | Decrements the integer part of a number. |
| exp | Calculates the exponent whose base is e that represents number. The constant e equals 2.71828182845904, the base of the natural logarithm. This function is the inverse of Log, the natural logarithm of number. |
| fix | Converts a real number to an integer. |
| formatBaseN | Converts number to a string, in the base specified by radix. |
| incrementValue | Adds one to an integer. |
| inputBaseN | Converts string, using the base specified by radix, to an integer. |
| int | Calculates the closest integer that is smaller than number. For example, it returns 3 for Int(3.3) and for Int(3.7); it returns -4 for Int(-3.3) and for Int(-3.7) |
| log | Calculates the natural logarithm of a number. Natural logarithms are based on the constant e (2.71828182845904). |
| log10 | Calculates the logarithm of number, to base 10. |
| max | Determines the greater of two numbers. |
| min | Determines the lesser of two numbers. |
| pi | Gets the mathematical constant p, accurate to 15 digits. |
| precisionEvaluate | Evaluates one or more string expressions, dynamically, from left to right, using BigDecimal precision arithmetic to calculate the values of arbitrary precision arithmetic expressions. |
| rand | Generates a pseudo-random number. |
| randomize | Seeds the pseudo-random number generator with an integer number, ensuring repeatable number patterns. |
| randRange | Generates a pseudo-random integer in the range between two specified numbers. |
| round | Rounds a number to the closest integer that is larger than the input parameter. |
| sgn | Determines the sign of a number. |
| sin | Calculates the sine of an angle that is entered in radians. |
| sqr | Calculates the square root of a number. |
| tan | Calculates the tangent of an angle that is entered in radians. |