ANN FeedForward Backpropagation Network simulation function
[y] = ann_FFBP_run(W,P,af)
Testing input
Output Weight and bias
Activation Function
Simulation result
FeedForward Backpropagation simulation/run function to produce predicted output.
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)