Compute a two-way frequency table using intervals of equal length and user supplied upper and lower bounds, xLowerBound, xUpperBound, yLowerBound, yUpperBound.

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

Syntax

C#
public double[,] GetFrequencyTable(
	double xLowerBound,
	double xUpperBound,
	double yLowerBound,
	double yUpperBound
)
Visual Basic (Declaration)
Public Function GetFrequencyTable ( _
	xLowerBound As Double, _
	xUpperBound As Double, _
	yLowerBound As Double, _
	yUpperBound As Double _
) As Double(,)
Visual C++
public:
array<double,2>^ GetFrequencyTable(
	double xLowerBound, 
	double xUpperBound, 
	double yLowerBound, 
	double yUpperBound
)

Parameters

xLowerBound
Type: System..::.Double
A double specifies the right endpoint for x.
xUpperBound
Type: System..::.Double
A double specifies the left endpoint for x.
yLowerBound
Type: System..::.Double
A double specifies the right endpoint for y.
yUpperBound
Type: System..::.Double
A double specifies the left endpoint for y.

Return Value

A two dimensional double array containing the two-way frequency table.

Remarks

The first and last intervals for both variables are semi-infinite in length. xIntervals and yIntervals must be greater than or equal to 3.

See Also