Can anyone tell me how does this code works?
1 view (last 30 days)
Show older comments
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 Comments
Accepted Answer
Neuropragmatist
on 23 Jul 2020
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.
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!