Click or drag to resize

BinomialDistributionInverseCDF Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public override double InverseCDF(
	double p
)

Parameters

p  Double
A probability between 0 and 1.

Return Value

Double
The x for the cumulative distribution function corresponding to the given probability.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the given probability is <0.0 or >1.0.
See Also