Mathematical Functions
A list of all mathematical functions supported by Cribl Search.
Name | Description |
---|---|
abs | Calculates the absolute value of the input. |
acos | Calculates the angle whose cosine is the specified number. |
asin | Calculates the angle whose sine is the specified number. |
atan | Returns the angle whose tangent is the specified number. |
atan2 | Calculates the angle, in radians, between the positive x-axis and the ray from the origin to the point (y, x). |
beta_cdf | Returns the standard cumulative beta distribution function. |
beta_inv | Returns the inverse of the beta cumulative probability beta density function. |
beta_pdf | Returns the probability density beta function. |
ceil | Rounds up a numeric expression’s value to the nearest integer. |
ceiling | Rounds up a numeric expression’s value to the nearest integer. |
cos | Returns the cosine function. |
cot | Calculates the trigonometric cotangent of the specified angle, in radians. |
degrees | Converts angle value in radians into value in degrees. |
exp | Calculates the base-e exponential function of x. |
exp2 | Calculates the base-2 exponential function of x. |
exp10 | Calculates the base-10 exponential function of x. |
gamma | Computes gamma function. |
isfinite | Returns whether input is a finite value. |
isinf | Returns whether input is an infinite value. |
isnan | Returns whether input is Not-a-Number (NaN) value. |
log | Returns the natural logarithm function. |
log2 | Returns the (base-2) logarithm function. |
log10 | Returns the common (base-10) logarithm function. |
loggamma | Computes log of absolute value of the loggamma function. |
not | Reverses the value of its boolean argument. |
pi | Returns the constant value of Pi. |
pow | Returns a result of raising to power. |
radians | Converts angle value in degrees into value in radians. |
rand | Returns a random number. |
range | Generates a dynamic array, holding a series of equally spaced values. |
round | Returns the rounded source to the specified precision. |
sign | Returns the sign of a numeric expression. |
sin | Returns the sine of a numeric expression. |
sqrt | Returns the square root function. |
tan | Returns the tangent function. |