| ProbabilityDistributionInverseCDF Method |
Computes the inverse of the cumulative distribution function at a
given probability.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public 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 Double
- A probability.
Return Value
DoubleThe value
x such that
CDF(x) = p.
See Also