Returns a one-way frequency table using known bounds.

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

Syntax

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

Parameters

lowerBound
Type: System..::.Double
A double specifies the right endpoint.
upperBound
Type: System..::.Double
A double specifies the left endpoint.

Return Value

A double array containing the one-way frequency table.

Remarks

The one-way frequency table is computed using two semi-infinite intervals as the initial and last intervals. The initial interval is closed on the right and includes lowerBound as its right endpoint. The last interval is open on the left and includes all values greater than upperBound. The remaining nIntervals - 2 intervals are each of length (upperBound - lowerBound) / (nIntervals - 2) and are open on the left and closed on the right. nIntervals must be greater than or equal to 3.

See Also