Evaluates the inverse CDF function.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double Eval(
double p,
double guess
)
Public Function Eval (
p As Double,
guess As Double
) As Double
public:
double Eval(
double p,
double guess
)
member Eval :
p : float *
guess : float -> float
Parameters
- p
- Type: SystemDouble
A double scalar value representing the point at which the
inverse CDF is desired.
- guess
- Type: SystemDouble
A double scalar value representing an initial estimate of the
inverse at p.
Return Value
Type:
Double
A
double scalar value representing the inverse of the CDF at
the point
p.
Exceptions Exception | Condition |
---|
DidNotConvergeException |
is thrown if the interation to find the inverse of the CDF did not converge.
|
Remarks
Cdf(InverseCdf) is "close" to p.
See Also