Plz help me to to test an image using RBF ( radial basis function ) kernal function with Artificial Neural Network?????in matlab code

1 view (last 30 days)
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
Greg Heath on 14 Feb 2015
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 Statistics and Machine Learning Toolbox in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!