ee.Number.cbrt

入力の立方根を計算します。

用途戻り値
Number.cbrt()数値
引数タイプ詳細
これ: input数値入力値。

コードエディタ(JavaScript)

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

Python の設定

Python API とインタラクティブな開発での geemap の使用については、 Python 環境のページをご覧ください。

import ee
import geemap.core as geemap

Colab(Python)

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