RegressorsForGLM Constructor (Double, Int32) |
Constructor where the class columns are the first columns.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public RegressorsForGLM(
double[,] x,
int nClassVariables
)
Public Sub New (
x As Double(,),
nClassVariables As Integer
)
public:
RegressorsForGLM(
array<double,2>^ x,
int nClassVariables
)
new :
x : float[,] *
nClassVariables : int -> RegressorsForGLM
Parameters
- x
- Type: SystemDouble
is an nObservations by
nClassVariables+nContinuousVariables
array containing the data, where nObservations is the
number of observations. The columns must be ordered such that the
first nClassVariables columns contain the class variables
and the next nContinuousVariables columns contain the
continuous variables.
- nClassVariables
- Type: SystemInt32
is number of class variables.
The number of continuous variables is assumed to be the number of
columns in x-nClassVariables.
See Also