can someone please explain this code step by step
1 view (last 30 days)
Show older comments
clc
clear all
training0=xlsread('training set.xls');
training1=xlsread('dataset.xlsx');
zero=zeros(10,1);
one=ones(10,1);
group=[zero;one];
test=TestFeatinputMRI;
training=[training0;training1];
KNN=fitcknn(training,group)
Class = knnclassify(test,training,group)
1 Comment
Answers (0)
See Also
Categories
Find more on Introduction to Installation and Licensing 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!