 | ProbabilityDistributionInverseCDF Method |
Computes the inverse of the cumulative distribution function at a
given probability.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic abstract double InverseCDF(
double p
)
Public MustOverride Function InverseCDF (
p As Double
) As Double
public:
virtual double InverseCDF(
double p
) abstract
abstract InverseCDF :
p : float -> float
Parameters
- p
- Type: SystemDouble
A probability.
Return Value
Type:
DoubleThe value
x such that
CDF(x) = p.
See Also