Returns the one-way frequency table using cutpoints.

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

Syntax

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

Parameters

cutpoints
Type: array< System..::.Double >[]()[]
A double array containing the cutpoints.

Return Value

A double array containing the one-way frequency table.

Remarks

The cutpoints are boundaries that must be provided in the array cutpoints of length nIntervals-1. This option allows unequal interval lengths. The initial interval is closed on the right and includes the initial cutpoint as its right endpoint. The last interval is open on the left and includes all values greater than the last cutpoint. The remaining nIntervals-2 intervals are open on the left and closed on the right. Argument nIntervals must be greater than or equal to 3 for this option.

See Also