Constructor with an explicit set of class column indices.

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

Syntax

C#
public RegressorsForGLM(
	double[,] x,
	int[] classColumns
)
Visual Basic (Declaration)
Public Sub New ( _
	x As Double(,), _
	classColumns As Integer() _
)
Visual C++
public:
RegressorsForGLM(
	array<double,2>^ x, 
	array<int>^ classColumns
)

Parameters

x
Type: array< System..::.Double ,2>[,](,)[,]
is an nObservations by nClassVariables+nContinuousVariables array containing the data. The columns containing the class variables are specified by classColumns.
classColumns
Type: array< System..::.Int32 >[]()[]
is an array containing the column indices, in x, of the class variables.

See Also