Sets the lower and upper limits for this distribution.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public void SetLimits(
	double lowerLimit,
	double upperLimit
)
Visual Basic (Declaration)
Public Sub SetLimits ( _
	lowerLimit As Double, _
	upperLimit As Double _
)
Visual C++
public:
void SetLimits(
	double lowerLimit, 
	double upperLimit
)

Parameters

lowerLimit
Type: System..::.Double
The lower limit for the distribution.
upperLimit
Type: System..::.Double
The upper limit for the distribution.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if the upper and lower limits are the same.

See Also