ee.Number.erfInv
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
इनपुट के व्युत्क्रम गड़बड़ी फ़ंक्शन की गणना करता है.
इस्तेमाल | रिटर्न |
---|
Number.erfInv() | नंबर |
आर्ग्यूमेंट | टाइप | विवरण |
---|
यह: input | नंबर | इनपुट वैल्यू. |
उदाहरण
कोड एडिटर (JavaScript)
print('Inverse error function of -1',
ee.Number(-1).erfInv()); // -Infinity
print('Inverse error function of -0.001',
ee.Number(-0.001).erfInv()); // -0.000886227
print('Inverse error function of 0',
ee.Number(0).erfInv()); // 0
print('Inverse error function of 0.001',
ee.Number(0.001).erfInv()); // 0.000886227
print('Inverse error function of 1',
ee.Number(1).erfInv()); // Infinity
Python सेटअप करना
Python API और इंटरैक्टिव डेवलपमेंट के लिए geemap
का इस्तेमाल करने के बारे में जानकारी पाने के लिए,
Python एनवायरमेंट पेज देखें.
import ee
import geemap.core as geemap
Colab (Python)
print('Inverse error function of -1:',
ee.Number(-1).erfInv().getInfo()) # -Infinity
print('Inverse error function of -0.001:',
ee.Number(-0.001).erfInv().getInfo()) # -0.000886227
print('Inverse error function of 0:',
ee.Number(0).erfInv().getInfo()) # 0
print('Inverse error function of 0.001:',
ee.Number(0.001).erfInv().getInfo()) # 0.000886227
print('Inverse error function of 1:',
ee.Number(1).erfInv().getInfo()) # Infinity
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[],["The `erfInv()` function calculates the inverse error function of a numerical input. It takes a single numerical input and returns a numerical output. The function is accessible through `Number.erfInv()` in JavaScript and `ee.Number().erfInv()` in Python. Inputs of -1 and 1 return -Infinity and Infinity respectively. Inputs of -0.001, 0, 0.001 return -0.000886227, 0, 0.000886227, respectively. The implementation for both languages, includes examples of these calculations.\n"],null,[]]