|
ShiftZ
When applied to an array and an integer, ShiftZ produces an array which is obtained by a right shift of the original array with zeros being shifted in on the left. The size of the shift is specified by the integer (negative values correspond to left shifts).
Examples: zero-shift((a, b, c, d), 1) = (0, a, b, c) zero-shift((a, b, c, d), -1) = (b, c, d, 0) zero-shift((a, b, c, d), -5) = (0, 0, 0, 0)
Special compound model elements
|