Neural Network Toolbox | ![]() ![]() |
Calculate delayed network inputs
Syntax
Description
This function calculates the results of passing the network inputs through each input weights tap delay line.
Pd = calcpd(net,TS,Q,Pc)
takes,
net -
Neural network.
TS -
Time steps.
Q -
Concurrent size.
Pc -
Combined inputs = [initial delay conditions, network inputs].
Pd -
Delayed inputs.
Examples
Here we create a linear network with a single input element ranging from 0 to 1, three neurons, and a tap delay on the input with taps at zero, two, and four time steps.
Here is a single (Q = 1
) input sequence P
with eight time steps (TS = 8
).
Here we define the four initial input delay conditions Pi
.
The delayed inputs (the inputs after passing through the tap delays) can be calculated with calcpd
.
Here we view the delayed inputs for input weight going to layer 1, from input 1 at time steps 1 and 2.
![]() | calcjx | calcperf | ![]() |