The function is not a Cumulative Distribution Function (CDF).

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

Syntax

C#
public NotCDFException(
	double lowerBound,
	double upperBound,
	double xx,
	int i
)
Visual Basic (Declaration)
Public Sub New ( _
	lowerBound As Double, _
	upperBound As Double, _
	xx As Double, _
	i As Integer _
)
Visual C++
public:
NotCDFException(
	double lowerBound, 
	double upperBound, 
	double xx, 
	int i
)

Parameters

lowerBound
Type: System..::.Double
A double containing the lower bound for the CDF value.
upperBound
Type: System..::.Double
A double containing the upper bound for the CDF value.
xx
Type: System..::.Double
A double containing the value at a cutpoint.
i
Type: System..::.Int32
The index of the cutpoint that is out of range.

Remarks

The cdf function is not a cumulative distribution function because its value at a cutpoint is out of the expected range, [plower,pupper].

See Also