Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain access. If you have not verified by September 26, 2025, your access may be on hold.
ee.Number.erfInv
Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
The Number.erfInv() method computes the inverse error function of a given input number.
It takes a single argument, which is the number for which to compute the inverse error function.
The method returns a Number representing the result of the inverse error function computation.
Examples demonstrate calculating the inverse error function for values like -1, -0.001, 0, 0.001, and 1, yielding results such as -Infinity, -0.000886227, 0, 0.000886227, and Infinity respectively.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 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"]]