math for math

Use mathematical functions as aggregate functions on a list of numbers or tables.

Signature

> math {flags}

Input/output types:

inputoutput
nothingstring

Notes

You must use one of the following subcommands. Using this command as-is will only produce this help message.

Subcommands:

nametypeusage
math absBuiltinReturns the absolute value of a number.
math arccosBuiltinReturns the arccosine of the number.
math arccoshBuiltinReturns the inverse of the hyperbolic cosine function.
math arcsinBuiltinReturns the arcsine of the number.
math arcsinhBuiltinReturns the inverse of the hyperbolic sine function.
math arctanBuiltinReturns the arctangent of the number.
math arctanhBuiltinReturns the inverse of the hyperbolic tangent function.
math avgBuiltinReturns the average of a list of numbers.
math ceilBuiltinReturns the ceil of a number (smallest integer greater than or equal to that number).
math cosBuiltinReturns the cosine of the number.
math coshBuiltinReturns the hyperbolic cosine of the number.
math expBuiltinReturns e raised to the power of x.
math floorBuiltinReturns the floor of a number (largest integer less than or equal to that number).
math lnBuiltinReturns the natural logarithm. Base: (math e).
math logBuiltinReturns the logarithm for an arbitrary base.
math maxBuiltinReturns the maximum of a list of values, or of columns in a table.
math medianBuiltinComputes the median of a list of numbers.
math minBuiltinFinds the minimum within a list of values or tables.
math modeBuiltinReturns the most frequent element(s) from a list of numbers or tables.
math productBuiltinReturns the product of a list of numbers or the products of each column of a table.
math roundBuiltinReturns the input number rounded to the specified precision.
math sinBuiltinReturns the sine of the number.
math sinhBuiltinReturns the hyperbolic sine of the number.
math sqrtBuiltinReturns the square root of the input number.
math stddevBuiltinReturns the standard deviation of a list of numbers, or of each column in a table.
math sumBuiltinReturns the sum of a list of numbers or of each column in a table.
math tanBuiltinReturns the tangent of the number.
math tanhBuiltinReturns the hyperbolic tangent of the number.
math varianceBuiltinReturns the variance of a list of numbers or of each column in a table.