GaussianStatisticsInverseComplementaryErrorFunction Method |
Calculates the inverse of the complementary error function.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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.
Remarks The
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