Computes the inverse complementary error function.

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

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public static double InverseErfc(
	double y
)
Public Shared Function InverseErfc ( _
	y As Double _
) As Double
public:
static double InverseErfc(
	double y
)
static member InverseErfc : 
        y : float -> float 

Parameters

y
Double
The value of erfc(x), which must lie between 0 and 1.

Return Value

The corresponding argument x.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptiony lies outside [0,1].

See Also