Main Content

tapdelay

Shift neural network time series data for tap delay

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])

Version History

Introduced in R2010b