| 
            
              MulticlassClassifierBaseDecide Method (Single, Boolean)
             | 
          
        
         
            Computes class-label decisions for the given input.
            
 
    Namespace: 
   Accord.MachineLearning
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic bool[] Decide(
	float[] input,
	bool[] result
)
Public Function Decide ( 
	input As Single(),
	result As Boolean()
) As Boolean()
 Request Example
		View SourceParameters
- input
 - Type: SystemSingle
The input vectors that should be classified as
            any of the NumberOfOutputs possible classes. - result
 - Type: SystemBoolean
The location where to store the class-labels. 
Return Value
Type: 
Boolean
            A set of class-labels that best describe the 
input
            vectors according to this classifier.
            
Implements
IMultilabelClassifierTInput, TClassesDecide(TInput, TClasses)
See Also