Constructor for TableTwoWay.

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

Syntax

C#
public TableTwoWay(
	double[] x,
	int xIntervals,
	double[] y,
	int yIntervals
)
Visual Basic (Declaration)
Public Sub New ( _
	x As Double(), _
	xIntervals As Integer, _
	y As Double(), _
	yIntervals As Integer _
)
Visual C++
public:
TableTwoWay(
	array<double>^ x, 
	int xIntervals, 
	array<double>^ y, 
	int yIntervals
)

Parameters

x
Type: array< System..::.Double >[]()[]
A double array containing the data for the first variable.
xIntervals
Type: System..::.Int32
A int scalar containing the number of intervals (bins) for variable x.
y
Type: array< System..::.Double >[]()[]
A double array containing the data for the second variable.
yIntervals
Type: System..::.Int32
A int scalar containing the number of intervals (bins) for variable y.

See Also