Enters data from a Double array into a histogram.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Sub Tabulate ( _
	data As Double(), _
	weights As Double() _
)
C#
public void Tabulate (
	double[] data,
	double[] weights
)
C++
public:
void Tabulate (
	array<double>^ data, 
	array<double>^ weights
)

Parameters

data ()
A Double array that contains the values to be tabulated.
weights ()
A Double array that contains the weights associated with each value of data.

Remarks

Use this method to enter the data from an array into the histogram. Every observation is tabulated with the corresponding weight in the weight array..

Exceptions

ExceptionCondition
ArgumentNullExceptiondata is nullNothingnullptr.

-or-

weights is nullNothingnullptr.

DimensionMismatchExceptionThe length of variable is not equal to the length of weights.