ee.Number.cbrt

Computes the cubic root of the input.

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

Examples

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

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

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