 | ProbabilityDistributionInverseCdfUsingBracket Method |
Uses a bracketing method to evaluate the inverse of cumulative
distribution functions.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.3
Syntaxprotected double InverseCdfUsingBracket(
double p,
double lowerBound,
double upperBound
)
Protected Function InverseCdfUsingBracket (
p As Double,
lowerBound As Double,
upperBound As Double
) As Double
protected:
double InverseCdfUsingBracket(
double p,
double lowerBound,
double upperBound
)
member InverseCdfUsingBracket :
p : float *
lowerBound : float *
upperBound : float -> float
Parameters
- p
- Type: SystemDouble
A probability. - lowerBound
- Type: SystemDouble
A lower bound for the inverse value. - upperBound
- Type: SystemDouble
An upper bound for the inverse value.
Return Value
Type:
DoubleThe value
x such that
CDF(x) = p.
See Also