Returns the inverse cumulative density function evaluated at the given value.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public override double InverseCDF(
	double p
)
Visual Basic (Declaration)
Public Overrides Function InverseCDF ( _
	p As Double _
) As Double
Visual C++
public:
virtual double InverseCDF(
	double p
) override

Parameters

p
Type: System..::.Double
A probability between 0 and 1.

Return Value

The value x such that the cumulative density function evaluated at x yields p.

Remarks

If p is greater than 1 or less than zero, Double.NaN (Not a Number) is returned.

See Also