Click or drag to resize

Histogram Constructor (Int32)

Creates a histogram with the given number of bins.

Namespace:  Meta.Numerics.Statistics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public Histogram(
	int binCount
)

Parameters

binCount
Type: SystemInt32
The number of bins.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionbinCount is less than 1.
Remarks

By default, the bin borders are the integers, i.e. values in [0, 1) fall into bin 0, values in [1, 2) fall into bin 1, etc.

See Also