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() _
)
C#
public void Tabulate (
	double[] data
)
C++
public:
void Tabulate (
	array<double>^ data
)

Parameters

data ()
A Double array that contains the values to be tabulated.

Remarks

Use this method to enter the data from an array into the histogram. All observations are considered to have weight equal to 1.

Exceptions

ExceptionCondition
ArgumentNullExceptiondata is nullNothingnullptr.