<< ann_COMPET Neural network functions ann_COMPET_visualize2d >>

A Neural Network Module for Scilab >> Neural network functions > ann_COMPET_run

ann_COMPET_run

ANN Competitive Network simulation function

Calling Sequence

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

Parameters

W :

weights for the network

P :

Testing input

y :

Winning Neuron

classes :

Classes for the input

Description

Competitive network simulation function

Examples

x = rand(2,10);
x(:,1:5) = x(:,1:5) + 1;
[W,b] =  ann_COMPET(x,2);
[y,classes] = ann_COMPET_run(W,x)

See also

Authors


Report an issue
<< ann_COMPET Neural network functions ann_COMPET_visualize2d >>