arange
Generates an array of numbers spaced by `step` in the interval `[start, end)`.
cmax
Returns the maximum value of an array, ignoring `NaN` values.
cmin
Returns the minimum value of an array, ignoring `NaN` values.
decompose-floating-point
Decomposes a floating point number into the scientific notation.
divmod
Performs integer (floored) division and returns `(quotient, remainder)` while guaranteeing that `quotient * divisor + remainder = divident`.
linspace
Generates an array of evenly-spaced numbers in the interval `[start, end)` or `[start, end]`.
mesh
Creates a rectangular mesh from two input arrays.
minmax
Returns the minimum and maximum value of an array, ignoring `NaN` values.
percentile
Computes the q-th percentile of the given data.
pow10
Computes $10^x$ for the given number $x$, guaranteeing floating point computation, even when the input is an `int`.
sign
Returns the sign of a number.