Hi All,
does anyone know of a mathematica function that efficiently circularly shifts all array elements?
e.g.
{1,2,3,4,5} -> {4,5,1,2,3}
without iterating? The reason I ask is because I have a huge data set I'm working with and right now iterating through is very processing intensive...