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 x1,
	double x2,
	double f1
)
Visual Basic (Declaration)
Public Sub New ( _
	x1 As Double, _
	x2 As Double, _
	f1 As Double _
)
Visual C++
public:
NotCDFException(
	double x1, 
	double x2, 
	double f1
)

Parameters

x1
Type: System..::.Double
is the first point
x2
Type: System..::.Double
is the second point
f1
Type: System..::.Double
is the common value for F(x1) and F(x2)

Remarks

The CDF function is not monotone, F(x1) = F(x2). No unique inverse exists.

See Also