Computes the inverse of the cumulative distribution function at a given probability.

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

Syntax

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

Parameters

p
Type: System..::.Double
A probability.

Return Value

The value x such that CDF(x) = p.

See Also