Click or drag to resize

Histogram(Interval) Constructor

Constructs a Histogram instance with the specified bin intervals.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public Histogram(
	Interval[] bins
)

Parameters

bins  Interval
The intervals to use for the bins.
Remarks
Intervals must be disjoint and arranged so that their endpoints touch, but do not overlap. that is, bin[i].Max is equal to bin[i+1].Min and if bin[i] includes its right endpoint, then bin[i+1] must exclude its left endpoint. And if bin[i] excludes its right endpoint then bin[i+1] must include its left endpoint.
See Also