функция разновидность = классификатор (функции)
**%classifier the function receives feature matrix
%as input and gives out the classified species of the
% input tumor**
load Trainset.mat
xdata = meas;
group = label;
svmStruct1 = fitcsvm(xdata,group,'KernelFunction', 'linear');
species = ClassificationSVM (svmStruct1,features,'showplot',false);
if strcmpi(species,'MALIGNANT')
helpdlg(' Malignant Tumor ');
else
helpdlg(' Benign Tumor ');
end
конец
У меня проблема с двумя строками ниже Ошибка при использовании ClassificationSVM (строка 249) Используйте fitcsvm для обучения модели SVM.