Meta.Numerics Library
InverseErf Method (y)
Meta.NumericsMeta.Numerics.FunctionsAdvancedMathInverseErf(Double)
Computes the inverse error function.
Declaration Syntax
C#Visual BasicVisual C++F#
public static double InverseErf(
	double y
)
Public Shared Function InverseErf ( _
	y As Double _
) As Double
public:
static double InverseErf(
	double y
)
static member InverseErf : 
        y:float -> float 
Parameters
y (Double)
The error function value erf(x), which must lie between -1 and 1.
Return Value
The corresponding argument x.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptiony is outside [-1,1].
See Also