Computes the inverse error function.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static double InverseErf(
	double y
)
Public Shared Function InverseErf ( _
	y As Double _
) As Double
public:
static double InverseErf(
	double y
)

Parameters

y
Double
The error function value erf(x), which must lie between -1 and 1.

Return Value

The corresponding argument x.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeException y is outside [-1,1].

See Also