ee.Array.cbrt
On an element-wise basis, computes the cubic root of the input.
Usage | Returns |
---|
Array.cbrt() | Array |
Argument | Type | Details |
---|
this: input | Array | The input array. |
Examples
// 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()); // -3
print(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 using
geemap
for interactive development.
import ee
import geemap.core as geemap
# 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()) # -3
display(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 the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["Computes the cubic root of each element in an input array."],["Returns a new array with the calculated cubic roots."],["Supports various array dimensions and numeric data types."],["Provides examples in JavaScript, Python and Colab environments."]]],[]]