0

What kind of Machine Learning method does the function "classify" in Matlab use for the multi-class classification? Is it SVM? If so, how does it use the classifier for multiple classes?

cerebrou
  • 275

1 Answers1

1

It uses discriminant analysis, linear or otherwise. Discriminant analysis can handle more than two classes directly.

Tom Lane
  • 824