Earth Engine は、共有コンピューティングリソースを保護し、すべてのユーザーに信頼性の高いパフォーマンスを提供するために、
非商用割り当て階層を導入しています。非商用プロジェクトではデフォルトでコミュニティ
ティアが使用されますが、プロジェクトのティアはいつでも変更できます。
Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
ee.Number.erfc
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
: 入力の相補誤差関数を計算します。
例
コードエディタ(JavaScript)
print('Complementary error function of -10',
ee.Number(-10).erfc()); // 2
print('Complementary error function of -0.001',
ee.Number(-0.001).erfc()); // 1.001128378
print('Complementary error function of 0',
ee.Number(0).erfc()); // 1
print('Complementary error function of 0.001',
ee.Number(0.001).erfc()); // 0.998871621
print('Complementary error function of 10',
ee.Number(10).erfc()); // 2.088487583e-45
Python の設定
Python API とインタラクティブな開発での geemap の使用については、
Python 環境のページをご覧ください。
import ee
import geemap.core as geemap
Colab(Python)
display('Complementary error function of -10:',
ee.Number(-10).erfc()) # 2
display('Complementary error function of -0.001:',
ee.Number(-0.001).erfc()) # 1.001128378
display('Complementary error function of 0:',
ee.Number(0).erfc()) # 1
display('Complementary error function of 0.001:',
ee.Number(0.001).erfc()) # 0.998871621
display('Complementary error function of 10:',
ee.Number(10).erfc()) # 2.088487583e-45
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-10-30 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-10-30 UTC。"],[],[]]