GaussianStatisticsInverseComplementaryErrorFunction Method  | 
 
            Calculates the inverse of the complementary error function.
            
 
    Namespace: 
   AGI.Foundation
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static double InverseComplementaryErrorFunction(
	double p
)
Public Shared Function InverseComplementaryErrorFunction ( 
	p As Double
) As Double
public:
static double InverseComplementaryErrorFunction(
	double p
)
static member InverseComplementaryErrorFunction : 
        p : float -> float 
Parameters
- p
 - Type: SystemDouble
The value to use to calculate the inverse of the complementary error function, from 0.0 to 2.0. 
Return Value
Type: 
DoubleThe inverse of the complementary error function.
RemarksThe 
ComplementaryErrorFunction(Double) approaches its asymptote very quickly, at double precision its solutions
            are rounded to 0.0 or 2.0 at an input of +-5.93. If this method returns negative or positive infinity and a finite value
            must be used instead, anything outside of that range would make an acceptable substitute.
See Also