<< ann_PERCEPTRON Neural_Network_Functions ann_PERCEPTRON_visualize >>

NeuralNet >> Neural_Network_Functions > ann_PERCEPTRON_run

ann_PERCEPTRON_run

ANN Perceptron simulate function.

Calling Sequence

y = ann_PERCEPTRON_run(P,w,b)

Parameters

P :

Testing input

w :

weights for the network

b :

bias for the network

y :

simulated output

Description

This funtion is a simple perceptron simulation function. Use after w and b created, either manually or by function ann_PERCEPTRON

Examples

P = [0 0 1 1 ; 0 1 0 1];
T = [0 0 0 1];
[w,b] = ann_PERCEPTRON(P,T);
y = ann_PERCEPTRON_run(P,w,b)

See also

Authors


Report an issue
<< ann_PERCEPTRON Neural_Network_Functions ann_PERCEPTRON_visualize >>