Constructs a new Histogram.

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

Syntax

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

Parameters

bounds ()
An array of double-precision floating point numbers specifying the lower bounds of the bins and the upper bound of the last bin.

Exceptions

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