Can you please tell me how to use multi class classification using support vector machine?

조회 수: 3 (최근 30일)
Can you please tell me how to use multi class classification using support vector machine?
I have studies in material that use fitcecoc, but how to use it. Please dont reply fisheriris example.
Is it like so....
Training_feat = dataTraining(:,1:16);
Testing_feat = dataTesting(:,1:16);
Training_class = dataTraining(:,17);
Testing_class = dataTesting(:,17);
Training=Training_feat;
Group=Training_class;
Sample=Testing_feat;
Mdl = fitcecoc(Training,Group)
Class = predict(Mdl,Sample);
then compare Class with Testing_class?

답변 (0개)

카테고리

Help CenterFile Exchange에서 Predictive Maintenance Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by