IMSL C# Numerical Library

TableTwoWay.GetFrequencyTable Method (Double, Double, Double, Double)

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

public double[,] GetFrequencyTable(
   double xLowerBound,
   double xUpperBound,
   double yLowerBound,
   double yUpperBound
);

Parameters

xLowerBound
A double specifies the right endpoint for x.
xUpperBound
A double specifies the left endpoint for x.
yLowerBound
A double specifies the right endpoint for y.
yUpperBound
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

TableTwoWay Class | Imsl.Stat Namespace | TableTwoWay.GetFrequencyTable Overload List