In formulas for calculated variables there is an additional set of Mathematical functions available:
- ABS(n) - Returns the absolute value of N
- ACOS(n) - Returns the angle whose cosine is the specified number.
- ACOSH(n) - Returns the angle whose hyperbolic cosine is the specified number.
- ASIN(n) - Returns the angle whose sine is the specified number.
- ASINH(n) - Returns the angle whose hyperbolic sine is the specified number.
- ATAN(n) - Returns the angle whose tangent is the specified number.
- ATAN2(n,n) - Returns the angle whose tangent is the quotient of two specified numbers.
- ATANH(n) - Returns the angle whose hyperbolic tangent is the specified number.
- BIGMUL(n,n) - Produces the full product of two 64-bit numbers.
- BITDECREMENT(n) - Returns the next smallest value that compares less than x.
- BITINCREMENT(n) - Returns the next largest value that compares greater than x.
- CBRT(n) - Returns the cube root of a specified number.
- CEILING(n) - Returns the smallest integral value that is greater than or equal to the specified decimal number.
- CLAMP(n,n,n) - Returns value clamped to the inclusive range of min and max.
- COPYSIGN(n,n) - Returns a value with the magnitude of x and the sign of y.
- COS(n) - Returns the cosine of the specified angle.
- COSH(n) - Returns the hyperbolic cosine of the specified angle.
- DIVREM(n,n,n) - Calculates the quotient of two 32-bit signed integers and also returns the remainder in an output parameter.
- EXP(n) - Returns e raised to the specified power.
- FLOOR(n) - Returns the largest integral value less than or equal to the specified number.
- FUSEDMULTIPLYADD(n,n,n) - Returns (x * y) + z, rounded as one ternary operation.
- IEEEREMAINDER(n,n) - Returns the remainder resulting from the division of a specified number by another specified number.
- ILOGB(n,n) - Returns the base 2 integer logarithm of a specified number.
- LOG(n) - Returns the natural (base e) logarithm of a specified number.
- LOG10(n) - Returns the base 10 logarithm of a specified number.
- LOG2(n) - Returns the base 2 logarithm of a specified number.
- MAX(n,n) - Returns the larger of two numbers.
- MAXMAGNITUDE(n,n) - Returns the larger magnitude of two double-precision floating-point numbers.
- MIN(n,n) - Returns the smaller of two numbers.
- MINMAGNITUDE(n,n) - Returns the smaller magnitude of two double-precision floating-point numbers.
- POW(n,n) - Returns a specified number raised to the specified power.
- ROUND(n,n) - Rounds a value to the specified number of fractional digits, and rounds midpoint values to the nearest even number.
- SCALEB(n,n) - Returns x * 2^n computed efficiently.
- SIGN(n) - Returns an integer that indicates the sign of the numeric value.
- SIN(n) - Returns the sine of the specified angle.
- SINH(n) - Returns the hyperbolic sine of the specified angle.
- SQRT(n) - Returns the square root of a specified number.
- TAN(n) - Returns the tangent of the specified angle.
- TANH(n) - Returns the hyperbolic tangent of the specified angle.
- TRUNCATE(n) - Calculates the integral part of a specified decimal number.