can someone please explain this code step by step
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaire
Réponses (0)
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!