Constructs a new Histogram using bins for all integers from zero up to the specified upper bound.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	lowerBound As Integer, _
	upperBound As Integer _
)
C#
public Histogram (
	int lowerBound,
	int upperBound
)
C++
public:
Histogram (
	int lowerBound, 
	int upperBound
)

Parameters

lowerBound (System.Int32)
The lower bound of the histogram.
upperBound (System.Int32)
The exclusive upper bound of the histogram.

Remarks

This constructor is used to create a histogram suitable for tabulating a range of integer values.