Announcement: All noncommercial projects registered to use Earth Engine beforeApril 15, 2025 mustverify noncommercial eligibility to maintain access. If you have not verified by September 26, 2025, your access may be on hold.

ee.Array.cbrt

  • TheArray.cbrt() method computes the cubic root of each element in the input array.

  • The method takes an array as input and returns an array of the same dimensions with the cubic roots of the original elements.

  • The examples demonstrate how to useArray.cbrt() with various array inputs in both JavaScript and Python.

On an element-wise basis, computes the cubic root of the input.

UsageReturns
Array.cbrt()Array
ArgumentTypeDetails
this:inputArrayThe input array.

Examples

Code Editor (JavaScript)

// Requires an explicit PixelType if no data.print(ee.Array([],ee.PixelType.int8()).cbrt());// []print(ee.Array([0]).cbrt());// [0]print(ee.Array([27]).cbrt());// [3]print(ee.Array([-27]).cbrt());// -3print(ee.Array([0,1,8,27]).cbrt());// [0,1,2,3]print(ee.Array([[0,1,8],[27,64,125]]).cbrt());// [[0,1,2],[3,4,5]]

Python setup

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

importeeimportgeemap.coreasgeemap

Colab (Python)

# Requires an explicit PixelType if no data.display(ee.Array([],ee.PixelType.int8()).cbrt())# []display(ee.Array([0]).cbrt())# [0]display(ee.Array([27]).cbrt())# [3]display(ee.Array([-27]).cbrt())# -3display(ee.Array([0,1,8,27]).cbrt())# [0, 1, 2, 3]# [[0, 1, 2], [3, 4, 5]]display(ee.Array([[0,1,8],[27,64,125]]).cbrt())

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2023-10-06 UTC.