can someone please explain this code step by step
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Respuestas (0)
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!