Can anyone tell me how does this code works?
1 次查看(过去 30 天)
显示 更早的评论
clc;
clear ;
close all;
%%
load FA
F1 = Feature;
load NF
F2 = Feature;
xdata = [F1;F2];
group = cell(1,1);
for ii = 1:size(F1,1)
group{ii,1} = 'Fatigue';
end
for ii = 1:size(F2,1)
group{ii+size(F1,1),1} = 'Non-Fatigue';
end
svmStruct = fitcsvm(xdata,group,'HyperparameterOptimizationOptions',struct('showplot',true));
% Testing
save svm svmStruct
load svm
for ii = 1:size(F1,1)
species = ClassificationSVM(svmStruct,F1(ii,:));
disp([ group{ii,1} ' = ' species]);
end
for ii = 1:size(F2,1)
species = ClassificationSVM(svmStruct,F2(ii,:));
disp([ group{ii+size(F1,1),1} ' = ' species]);
end
I want to figure out specially what happens in the for loops.
0 个评论
采纳的回答
Neuropragmatist
2020-7-23
Hi,
It is difficult to know exactly what the code is doing without the data files it is loading.
However, at first glance I would guess it trains a machine learning algorithm on a known data set using the fitcsvm function and then it queries this model with unknown values in the for loops using ClassificationSVM.
Have you tried looking at the contents of xdata and group? What about the figure fitcsvm makes when you run the code? Then look at the help pages for these two functions:
With all the information together I'm sure it will make sense to you, if not you can start to ask more specific questions about the functions etc.
NP.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!