Plz help me to to test an image using RBF ( radial basis function ) kernal function with Artificial Neural Network?????in matlab code
Show older comments
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);
Answers (1)
Greg Heath
on 14 Feb 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
Categories
Find more on Deep Learning Toolbox 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!