ee.Number.erfcInv

Tính hàm bù sai số nghịch đảo của giá trị đầu vào.

Cách sử dụngGiá trị trả về
Number.erfcInv()Số
Đối sốLoạiThông tin chi tiết
this: inputSốGiá trị đầu vào.

Ví dụ

Trình soạn thảo mã (JavaScript)

print('Inverse complementary error function of 0',
      ee.Number(0).erfcInv());  // Infinity

print('Inverse complementary error function of 0.001',
      ee.Number(0.001).erfcInv());  // 2.326753765

print('Inverse complementary error function of 1',
      ee.Number(1).erfcInv());  // 0

Thiết lập Python

Hãy xem trang Môi trường Python để biết thông tin về API Python và cách sử dụng geemap cho quá trình phát triển tương tác.

import ee
import geemap.core as geemap

Colab (Python)

print('Inverse complementary error function of 0:',
      ee.Number(0).erfcInv().getInfo())  # Infinity

print('Inverse complementary error function of 0.001:',
      ee.Number(0.001).erfcInv().getInfo())  # 2.326753765

print('Inverse complementary error function of 1:',
      ee.Number(1).erfcInv().getInfo())  # 0