Classify a set of observations using the linear or quadratic
discriminant functions generated during the training process.
Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public void Classify(
double[,] x
) |
Visual Basic (Declaration) |
---|
Public Sub Classify ( _
x As Double(,) _
) |
Visual C++ |
---|
public:
void Classify(
array<double,2>^ x
) |
Parameters
- x
- Type: array<
System..::.Double
,2>[,](,)[,]
A double matrix containing the observations with
at least nVariables columns. The first
nVariables columns correspond to the variables.
Reclassification does not require group numbers be
present. Any additional columns will be ignored.
Remarks
Exceptions
See Also