Plz help me to to test an image using RBF ( radial basis function ) kernal function with Artificial Neural Network?????in matlab code
Afficher commentaires plus anciens
Tc=[1 1 1 1 2 2 2 2 2 2 2 2 2 ]; SPREAD=1; T=ind2vec(Tc); net=newrbe(P,T,SPREAD); A = sim(net,P); %Y=net(P); ANNresult = vec2ind(A);
Réponses (1)
Greg Heath
le 14 Fév 2015
0 votes
You haven't provided P
isequal( net(P), sim( net, P )) % 1
err = ANNRESULT~=Tc
Nerr = sum(err)
PctErr = 100*Nerr/N
Catégories
En savoir plus sur Downloads dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!