ABS
SourceABS returns the absolute value of a given number.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The absolute value of a given number.
ACOS
SourceACOS returns the arccosine, in radians, of a given number.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The arccosine, in radians, of a given number.
ASIN
SourceASIN returns the arcsine, in radians, of a given number.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The arcsine, in radians, of a given number.
ATAN
SourceATAN returns the arctangent, in radians, of a given number.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The arctangent, in radians, of a given number.
ATAN2
SourceATAN2 returns the arc tangent of y/x, using the signs of the two to determine the quadrant of the return value.
| Argument | Type | Default value | Description |
number1 |
Int Float |
Input number. | |
number2 |
Int Float |
Input number. |
Returns Float The arc tangent of y/x, using the signs of the two to determine the quadrant of the return value.
AVERAGE
SourceAVERAGE Returns the average (arithmetic mean) of the values in array.
| Argument | Type | Default value | Description |
array |
Int[] Float[] |
Array of numbers. |
Returns Float The average of the values in array.
CEIL
SourceCEIL returns the least integer value greater than or equal to a given value.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Int The least integer value greater than or equal to a given value.
COS
SourceCOS returns the cosine of a given number.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The cosine of a given number.
DEGREES
SourceDEGREES returns the angle converted from radians to degrees.
| Argument | Type | Default value | Description |
number |
Int Float |
The input number. |
Returns Float The angle in degrees
EXP
SourceEXP returns Euler’s constant (2.71828…) raised to the power of value.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float Euler’s constant raised to the power of value.
EXP2
SourceEXP2 returns 2 raised to the power of value.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float 2 raised to the power of value.
FLOOR
SourceFLOOR returns the greatest integer value less than or equal to a given value.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Int The greatest integer value less than or equal to a given value.
LOG
SourceLOG returns the natural logarithm of a given value.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The natural logarithm of a given value.
LOG10
SourceLOG10 returns the decimal logarithm of a given value.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The decimal logarithm of a given value.
LOG2
SourceLOG2 returns the binary logarithm of a given value.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The binary logarithm of a given value.
MAX
SourceMAX returns the greatest (arithmetic mean) of the values in array.
| Argument | Type | Default value | Description |
array |
Int[] Float[] |
Array of numbers. |
Returns Float The greatest of the values in array.
MEDIAN
SourceMEDIAN returns the median of the values in array.
| Argument | Type | Default value | Description |
array |
Int[] Float[] |
Array of numbers. |
Returns Float The median of the values in array.
MIN
SourceMIN returns the smallest (arithmetic mean) of the values in array.
| Argument | Type | Default value | Description |
array |
Int[] Float[] |
Array of numbers. |
Returns Float The smallest of the values in array.
PERCENTILE
SourcePERCENTILE returns the nth percentile of the values in a given array.
| Argument | Type | Default value | Description |
array |
Int[] Float[] |
Array of numbers. | |
number |
Int |
A number which must be between 0 (excluded) and 100 (included). | |
method |
String |
"rank" |
“rank” or “interpolation”. |
Returns Float The nth percentile, or null if the array is empty or only null values are contained in it or the percentile cannot be calculated.
PI
SourcePI returns Pi value.
| Argument | Type | Default value | Description |
Returns Float Pi value.
POW
SourcePOW returns the base to the exponent value.
| Argument | Type | Default value | Description |
base |
Int Float |
The base value. | |
exp |
Int Float |
The exponent value. |
Returns Float The exponentiated value.
RADIANS
SourceRADIANS returns the angle converted from degrees to radians.
| Argument | Type | Default value | Description |
number |
Int Float |
The input number. |
Returns Float The angle in radians.
RAND
SourceRAND return a pseudo-random number between 0 and 1.
| Argument | Type | Default value | Description |
max |
Int Float |
Upper limit. | |
min |
Int Float |
Lower limit. |
Returns Float A number greater than 0 and less than 1.
RANGE
SourceRANGE returns an array of numbers in the specified range, optionally with increments other than 1.
| Argument | Type | Default value | Description |
start |
Int Float |
The value to start the range at (inclusive). | |
end |
Int Float |
The value to end the range with (inclusive). | |
step |
Int Float |
1.0 |
How much to increment in every step. |
Returns Int[] Float[] Array of numbers in the specified range, optionally with increments other than 1.
ROUND
SourceROUND returns the nearest integer, rounding half away from zero.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Int The nearest integer, rounding half away from zero.
SIN
SourceSIN returns the sine of the radian argument.
| Argument | Type | Default value | Description |
number |
Int Float |
Input number. |
Returns Float The sin, in radians, of a given number.
SQRT
SourceSQRT returns the square root of a given number.
| Argument | Type | Default value | Description |
value |
Int Float |
A number. |
Returns Float The square root.
STDDEV_POPULATION
SourceSTDDEV_POPULATION returns the population standard deviation of the values in a given array.
| Argument | Type | Default value | Description |
numbers |
Int[] Float[] |
Array of numbers. |
Returns Float The population standard deviation.
STDDEV_SAMPLE
SourceSTDDEV_SAMPLE returns the sample standard deviation of the values in a given array.
| Argument | Type | Default value | Description |
numbers |
Int[] Float[] |
Array of numbers. |
Returns Float The sample standard deviation.
SUM
SourceSUM returns the sum of the values in a given array.
| Argument | Type | Default value | Description |
numbers |
Int[] Float[] |
Array of numbers. |
Returns Float The sum of the values.
TAN
SourceTAN returns the tangent of a given number.
| Argument | Type | Default value | Description |
number |
Int Float |
A number. |
Returns Float The tangent.
VARIANCE_POPULATION
SourceVARIANCE_POPULATION returns the population variance of the values in a given array.
| Argument | Type | Default value | Description |
numbers |
Int[] Float[] |
Array of numbers. |
Returns Float The population variance.
VARIANCE_SAMPLE
SourceVARIANCE_SAMPLE returns the sample variance of the values in a given array.
| Argument | Type | Default value | Description |
numbers |
Int[] Float[] |
Array of numbers. |
Returns Float The sample variance.