Initializes a new instance of the ContinuousHistogram class.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public ContinuousHistogram(
	int[] values,
	Range range
)

Parameters

values
Type: array< System..::.Int32 >[]()[]
Values of the histogram.
range
Type: AForge..::.Range
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