Constructs a new NumericalScale using the specified boundaries.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	bounds As Double() _
)
C#
public NumericalScale (
	double[] bounds
)
C++
public:
NumericalScale (
	array<double>^ bounds
)

Parameters

bounds ()
A Double array that specifies the boundaries of the intervals.

Exceptions

ExceptionCondition
ArgumentNullExceptionbounds is nullNothingnullptr.
ArgumentExceptionThe elements of bounds are not in ascending order.