ANN LVQ Network Simulation function
[y,classes] = ann_LVQ_run(W,P)
weights for the network
Testing input
Winning Neuron (Classes for the supervised portion of LVW Network)
Classes for the input
LVQ network simulation function
x = rand(2,10); x(:,1:5) = x(:,1:5) + 1; T = [1 1 1 1 1 0 0 0 0 0;0 0 0 0 0 1 1 1 1 1] [W,b] = ann_LVQ1(x,T,4); [y,classes] = ann_LVQ_run(W,x) | ![]() | ![]() |