Constructs a new Histogram using bins of equal width.

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

Syntax

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

Parameters

lowerBound (System.Double)
The lower bound of the histogram.
upperBound (System.Double)
The upper bound of the histogram.
numberOfBins (System.Int32)
The number of bins.