Click or drag to resize

Histogram(Int32, Double, Double) Constructor

Constructs a Histogram instance with the specified number of equal-sized bins spanning the specified maximum and mininum values.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public Histogram(
	int numBins,
	double minValue,
	double maxValue
)

Parameters

numBins  Int32
The number of bins. Must be greated than zero
minValue  Double
The value for the left-hand endpoint of the first bin.
maxValue  Double
The value for the right-hand endpoint of the last bin.
Exceptions
ExceptionCondition
InvalidBinBdryExceptionThrown if the specified maximum and minimum values are the same, or if the specified number of bins cannot be created.
See Also