MATH Functions
All functions > MATH
All functions in the MATH category.
Function | Description |
---|---|
ABS | Returns the absolute value of a number. |
ACOS | Returns the arccosine (inverse cosine) of a number in radians. |
ADD | Adds two numbers and returns their sum. |
ASIN | Returns the arcsine (inverse sine) of a number in radians. |
ATAN | Returns the arctangent (inverse tangent) of a number in radians. |
ATAN2 | Returns the arctangent of y/x, using the signs to determine the quadrant. |
CBRT | Returns the cube root of a number. |
CEIL | Rounds a number up to the nearest integer (ceiling function). |
COS | Returns the cosine of an angle in radians. |
COSH | Returns the hyperbolic cosine of a number. |
DEGREES | Converts an angle from radians to degrees. |
DIVIDE | Divides the first number by the second and returns the result as a double. |
DIVIDE_TYPE | Divides the first number by the second, preserving the type of the first argument. |
EXP | Returns e raised to the power of the given number (exponential function). |
FLOOR | Rounds a number down to the nearest integer (floor function). |
FROM_BASE | Converts a number from a specified base to decimal (base 10). |
IS_FINITE | Checks if a number is finite (not infinite and not NaN). |
IS_INFINITE | Checks if a number is infinite (positive or negative infinity). |
IS_NAN | Checks if a value is NaN (Not a Number). |
LN | Returns the natural logarithm (base e) of a number. |
LOG | Returns the logarithm of a number to a specified base. |
MODULO | Returns the remainder after dividing the first number by the second (modulo operation). |
MULTIPLY | Multiplies two numbers and returns their product. |
POW | Returns the value of a number raised to the power of another number. |
RADIANS | Converts an angle from degrees to radians. |
RANDOM | [Non-deterministic] Returns a random number in the range 0.0 <= x < 1.0 |
ROUND | Rounds a number to the nearest integer or to a specified number of decimal places. |
SIGN | Returns the sign of a number: -1 for negative, 0 for zero, and 1 for positive. |
SIN | Returns the sine of an angle in radians. |
SINH | Returns the hyperbolic sine of a number. |
SQRT | Returns the square root of a number. |
SUBSTRACT | Subtracts the second number from the first and returns the result. |
TAN | Returns the tangent of an angle in radians. |
TANH | Returns the hyperbolic tangent of a number. |
TO_BASE | Converts a decimal number to a specified base representation. |
TRUNCATE | Truncates a number towards zero (removes the fractional part). |
WIDTH_BUCKET | Returns the bucket number for a value in a histogram with custom bin boundaries. |
WIDTH_BUCKET_REGULAR | Returns the bucket number for a value in equally-spaced buckets within a range. |
Summary
- Functions in MATH: 38
This documentation is automatically generated from the FeatureMesh registry.