Evaluates the inverse CDF function.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double Eval(
	double p,
	double guess
)
Visual Basic (Declaration)
Public Function Eval ( _
	p As Double, _
	guess As Double _
) As Double
Visual C++
public:
double Eval(
	double p, 
	double guess
)

Parameters

p
Type: System..::.Double
A double scalar value representing the point at which the inverse CDF is desired.
guess
Type: System..::.Double
A double scalar value representing an initial estimate of the inverse at p.

Return Value

A double scalar value representing the inverse of the CDF at the point p.

Remarks

Cdf(InverseCdf) is "close" to p.

Exceptions

ExceptionCondition
Imsl.Stat..::.DidNotConvergeException is thrown if the interation to find the inverse of the CDF did not converge.

See Also