Conversion to cell from ClassificationSVM is not possible
古いコメントを表示
How to correct this error?
the code:
SVMModels=cell(5,1);
Y=GroupTrain;
classes=unique(Y);
rng(1);
for j=1:numel(classes)
indx=strcmp(Y',classes(j));%%Create binary classes for each classifier
SVMModels(j)=fitcsvm(DF,indx,'ClassNames',[false true],'Standardize',true,... %%ERROR!!!
'KernelFunction','rbf','BoxConstraint',1);
end
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Classification Ensembles についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!