 | NormalDistributionInverseCDF Method |
Returns the inverse cumulative density function evaluated at the given value.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.3
Syntaxpublic override double InverseCDF(
double p
)
Public Overrides Function InverseCDF (
p As Double
) As Double
public:
virtual double InverseCDF(
double p
) override
abstract InverseCDF :
p : float -> float
override InverseCDF :
p : float -> float
Parameters
- p
- Type: SystemDouble
A probability between 0 and 1.
Return Value
Type:
DoubleThe value
x such that the cumulative density function evaluated
at
x yields
p.
RemarksIf p is greater than 1 or less than zero, Double.NaN
(Not-a-Number) is returned.
See Also