<< ann_FFBP_lm Neural_Network_Functions ann_FFBP_sim >>

NeuralNet >> Neural_Network_Functions > ann_FFBP_run

ann_FFBP_run

ANN FeedForward Backpropagation Network simulation function

Calling Sequence

[y] = ann_FFBP_run(W,P,af)

Parameters

P :

Testing input

W :

Output Weight and bias

af :

Activation Function

y :

Simulation result

Description

FeedForward Backpropagation simulation/run function to produce predicted output.

Examples

P = [1 2 3 4; 1 2 3 4];
T = [1 2 3 4];
W = ann_FFBP_lm(P,T,[2 3 1]);
y = ann_FFBP_run(P,W)

See also

Authors


Report an issue
<< ann_FFBP_lm Neural_Network_Functions ann_FFBP_sim >>