CBRT
Computes the cube root of the given input.
Syntax
CBRT(X)
Arguments
X
Type: numeric
A numeric value.
Returns
Type: double
The cube root of X.
Examples
| X | Output |
|---|---|
| 1 | 1 |
| 1 + 1 | 1.2599210498948732 |
| 0 | 0 |
| 1.1 | 1.0322801154563672 |
| -1 | -1 |
| -1.1 | -1.0322801154563672 |
| -1 - 5 | -1.8171205928321397 |
| 0.1 | 0.4641588833612779 |
| -0.1 | -0.4641588833612779 |