math cbrt for math
Returns the real-valued cube root of the input number.
Signature
> math cbrt {flags}
Input/output types:
| input | output |
|---|---|
| number | float |
| list<number> | list<float> |
| range | list<number> |
Examples
Compute the cube root of each number in a list.
> [8 -27] | math cbrt
╭───┬───────╮
│ 0 │ 2.00 │
│ 1 │ -3.00 │
╰───┴───────╯