| acos | Calculates the arccosine (inverse cosine) of the given value. |
| acosh | Calculates the inverse hyperbolic cosine of the given value. |
| asin | Calculates the arcsine (inverse sine) of the given value. |
| asinh | Calculates the inverse hyperbolic sine of the given value. |
| associated_legendre | Evaluates the associated Legendre polynomial of degree n and order m at the given position. The associated Legendre polynomials are defined as:... |
| atan | Calculates the arctangent (inverse tangent) of the given value. |
| atan2 | Calculates the arctangent of the quotient of its arguments. |
| atanh | Calculates the inverse hyperbolic tangent of the given value. |
| beta | Evaluates the beta function at the given position. The beta function is defined as:... |
| cbrt | Calculates the cube root of the given value. |
| ceil | Rounds the given value upward to the nearest integer. |
| choose | Calculates the binomial coefficient (n choose k). |
| copysign | Copies the sign of the second value to the first value. |
| cos | Calculates the cosine of the given angle in radians. |
| cosh | Calculates the hyperbolic cosine of the given value. |
| erf | Calculates the error function of the given value. |
| erfc | Calculates the complementary error function of the given value. |
| exp | Calculates the exponential of the given value (e^x). |
| exp2 | Calculates 2 raised to the power of the given value. |
| expint | Evaluates the exponential integral at the given position. The exponential integral is defined as:... |
| expm1 | Calculates e raised to the power of the given value minus 1. |
| floor | Rounds the given value downward to the nearest integer. |
| hermite | Evaluates the Hermite polynomial of degree n at the given position. The Hermite polynomials are defined as:... |
| hypot | Calculates the Euclidean norm (hypotenuse) of two values. |
| isfinite | Checks if the given value is finite. |
| isgreater | Checks if the first value is greater than the second value. |
| isgreaterequal | Checks if the first value is greater than or equal to the second value. |
| isinf | Checks if the given value is infinite. |
| isless | Checks if the first value is less than the second value. |
| islessequal | Checks if the first value is less than or equal to the second value. |
| islessgreater | Checks if the first value is less than or greater than the second value. |
| isnan | Checks if the given value is NaN (Not-a-Number). |
| isunordered | Checks if either of the two values is NaN (Not-a-Number). |
| laguerre | Evaluates the Laguerre polynomial of degree n at the given position. The Laguerre polynomials are defined as:... |
| legendre | Evaluates the Legendre polynomial of degree n at the given position. The Legendre polynomials are defined as:... |
| lgamma | Calculates the natural logarithm of the absolute value of the gamma function of the given value. |
| log | Calculates the natural logarithm (base e) of the given value. |
| log10 | Calculates the base-10 logarithm of the given value. |
| log1p | Calculates the natural logarithm of 1 plus the given value. |
| log2 | Calculates the base-2 logarithm of the given value. |
| pow | Exponentiates the left-hand side number by the right-hand side number. |
| riemann_zeta | Evaluates the Riemann zeta function at the given position. The Riemann zeta function is defined as:... |
| round | Rounds the given value to the nearest integer. |
| signbit | Checks if the sign bit of the given value is set (negative). |
| sin | Calculates the sine of the given angle in radians. |
| sinh | Calculates the hyperbolic sine of the given value. |
| spherical_bessel | Evaluates the spherical Bessel function of the first kind at the given position. The spherical Bessel functions are defined as:... |
| sqrt | Calculates the square root of the given value. |
| tan | Calculates the tangent of the given angle in radians. |
| tanh | Calculates the hyperbolic tangent of the given value. |
| tgamma | Calculates the gamma function of the given value. |
| trunc | Truncates the given value to the nearest integer not greater in magnitude. |