<< ann_LVQ1 Neural_Network_Functions ann_PERCEPTRON >>

NeuralNet >> Neural_Network_Functions > ann_LVQ_run

ann_LVQ_run

ANN LVQ Network Simulation function

Calling Sequence

[y,classes] = ann_LVQ_run(W,P)

Parameters

W :

weights for the network

P :

Testing input

y :

Winning Neuron (Classes for the supervised portion of LVW Network)

classes :

Classes for the input

Description

LVQ network simulation function

Examples

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)

See also

Authors


Report an issue
<< ann_LVQ1 Neural_Network_Functions ann_PERCEPTRON >>