ee.Number.cbrt

Computes the cubic root of the input.

UsageReturns
Number.cbrt()Number
ArgumentTypeDetails
this: inputNumberThe input value.

Examples

Code Editor (JavaScript)

print('Cubic root of 27', ee.Number(27).cbrt());  // 3

Python setup

See the Python Environment page for information on the Python API and using geemap for interactive development.

import ee
import geemap.core as geemap

Colab (Python)

print('Cubic root of 27:', ee.Number(27).cbrt().getInfo())  # 3