Go to: Synopsis. Return value. MEL examples.
erf
float
erf is NOT undoable, NOT queryable, and NOT editable.
Returns the error function of the argument, call it x, defined as:(2 / sqrt(pi)) integral{0 to x} of (e ** -t **2) dt.
This command is implemented using the builtin system functions.
Special Note:float | Error value |
// Return the error function of 1.0 erf 1.0; // Result: 0.842701 //