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, _
	specialBins As SpecialBins _
)
C#
public Histogram (
	double lowerBound,
	double upperBound,
	int numberOfBins,
	SpecialBins specialBins
)
C++
public:
Histogram (
	double lowerBound, 
	double upperBound, 
	int numberOfBins, 
	SpecialBins specialBins
)

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.
specialBins (Extreme.Statistics.SpecialBins)
A SpecialBins value that specifies which special bins, if any, to include in the scale.