Plz help me to to test an image using RBF ( radial basis function ) kernal function with Artificial Neural Network?????in matlab code
Ältere Kommentare anzeigen
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);
Antworten (1)
Greg Heath
am 14 Feb. 2015
0 Stimmen
You haven't provided P
isequal( net(P), sim( net, P )) % 1
err = ANNRESULT~=Tc
Nerr = sum(err)
PctErr = 100*Nerr/N
Kategorien
Mehr zu Downloads finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!