Shift vector list

Shifts the items of a vector list.


Inputs

  • list

    • The list of vector values to shift.
  • shift

    • The value that defines the number of positions to shift the list.

Outputs

  • list

    • The shifted list of vector values.

Note(s)

  • A shifted list is cyclic.

    • For example, if a list is shifted by a shift input value of -1, the vector value at index 0 is now at index 1 and the vector value that was at the end of the list is now at index 0.
  • Other names for this node include: ShiftVectorList.

Example(s)