tapdelay
(To be removed) Shift neural network time series data for tap delay
tapdelay will be removed in a future release. For more information,
see Transition Legacy Neural Network Code to dlnetwork Workflows.
For advice on updating your code, see Version History.
Syntax
tapdelay(x,i,ts,delays)
Description
tapdelay(x,i,ts,delays) takes these arguments,
x | Neural network time series data |
i | Signal index |
ts | Timestep index |
delays | Row vector of increasing zero or positive delays |
and returns the tap delay values of signal i at timestep
ts given the specified tap delays.
Examples
Here a random signal x consisting of eight timesteps is defined,
and a tap delay with delays of [0 1 4] is simulated at timestep
6.
x = num2cell(rand(1,8)); y = tapdelay(x,1,6,[0 1 4])