|
ContinuousHistogram Constructor
|
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public ContinuousHistogram(
int[] values,
Range range
)
Public Sub New (
values As Integer(),
range As Range
)
Request Example
View SourceParameters
- 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