Click or drag to resize

FunctionsErfcInv Method

Calculates the complementary inverse error function evaluated at z.

Namespace: Austra.Library.Stats
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+892c66cd78254e5a7ad663c063da400b3042cf5b
Syntax
C#
public static double ErfcInv(
	double z
)

Parameters

z  Double
value to evaluate.

Return Value

Double
The complementary inverse error function evaluated at given value.
Remarks
We have tested this implementation against the arbitrary precision mpmath library and found cases where we can only guarantee 9 significant figures correct.
  • returns double.PositiveInfinity if z <= 0.0.
  • returns double.NegativeInfinity if z >= 2.0.
See Also