Constructor for TableTwoWay.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public TableTwoWay(
double[] x,
int xIntervals,
double[] y,
int yIntervals
)
Public Sub New (
x As Double(),
xIntervals As Integer,
y As Double(),
yIntervals As Integer
)
public:
TableTwoWay(
array<double>^ x,
int xIntervals,
array<double>^ y,
int yIntervals
)
new :
x : float[] *
xIntervals : int *
y : float[] *
yIntervals : int -> TableTwoWay
Parameters
- x
- Type: SystemDouble
A double array containing the data for the first variable.
- xIntervals
- Type: SystemInt32
A int scalar containing the number of intervals (bins) for
variable x.
- y
- Type: SystemDouble
A double array containing the data for the second variable.
- yIntervals
- Type: SystemInt32
A int scalar containing the number of intervals (bins) for
variable y.
See Also