Click or drag to resize
TableTwoWayGetFrequencyTable 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.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public double[,] GetFrequencyTable(
	double xLowerBound,
	double xUpperBound,
	double yLowerBound,
	double yUpperBound
)

Parameters

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

Return Value

Type: Double
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