ee.Number.erfcInv

คำนวณฟังก์ชันข้อผิดพลาดเสริมผกผันของอินพุต

การใช้งานการคืนสินค้า
Number.erfcInv()ตัวเลข
อาร์กิวเมนต์ประเภทรายละเอียด
ดังนี้ inputตัวเลขค่าอินพุต

ตัวอย่าง

โปรแกรมแก้ไขโค้ด (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

การตั้งค่า Python

ดูข้อมูลเกี่ยวกับ Python API และการใช้ geemap เพื่อการพัฒนาแบบอินเทอร์แอกทีฟได้ที่หน้า สภาพแวดล้อม Python

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