Returns the one-way frequency table.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double[] GetFrequencyTable()
Visual Basic (Declaration)
Public Function GetFrequencyTable As Double()
Visual C++
public:
array<double>^ GetFrequencyTable()

Return Value

A double array containing the one-way frequency table.

Remarks

nIntervals intervals of equal length are used with the initial interval starting with the minimum value in x and the last interval ending with the maximum value in x. The initial interval is closed on the left and the right. The remaining intervals are open on the left and the closed on the right. Each interval is of length (max-min)/nIntervals, where max is the maximum value of x and min is the minimum value of x.

See Also