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.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[,] GetFrequencyTable(
double xLowerBound,
double xUpperBound,
double yLowerBound,
double yUpperBound
)
Public Function GetFrequencyTable (
xLowerBound As Double,
xUpperBound As Double,
yLowerBound As Double,
yUpperBound As Double
) As Double(,)
public:
array<double,2>^ GetFrequencyTable(
double xLowerBound,
double xUpperBound,
double yLowerBound,
double yUpperBound
)
member GetFrequencyTable :
xLowerBound : float *
xUpperBound : float *
yLowerBound : float *
yUpperBound : float -> float[,]
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