Sets endpoints of the range of the distribution.

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

Syntax

C#
public void SetRange(
	double lower,
	double upper
)
Visual Basic (Declaration)
Public Sub SetRange ( _
	lower As Double, _
	upper As Double _
)
Visual C++
public:
void SetRange(
	double lower, 
	double upper
)

Parameters

lower
Type: System..::.Double
A double which specifies the lower range limit.
upper
Type: System..::.Double
A double which specifies the upper range limit.

Remarks

Points outside of the range are ignored so that distributions conditional on the range can be used. In this case, the point lower is excluded from the first interval, but the point upper is included in the last interval.

By default, a range on the whole real line is used.

See Also