Click or drag to resize
Accord.NET (logo)

ContinuousHistogram Constructor

Initializes a new instance of the ContinuousHistogram class.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public ContinuousHistogram(
	int[] values,
	Range range
)
Request Example View Source

Parameters

values
Type: SystemInt32
Values of the histogram.
range
Type: AccordRange
Range of random values.
Remarks
Values of the integer array are treated as total amount of hits on the corresponding subranges, which are calculated by splitting the specified range into required amount of consequent ranges (see ContinuousHistogram class description for more information).
See Also