I know how to RotateRight a single list; lets take the following example:
list=Range[5];
rot=RotateRight[list,2]
But how to make the same rotation on a bunch of lists like:
list={Range[5],Range[5]};
The result should look like:
rot={{4,5,1,2,3},{4,5,1,2,3}}
RotateRightand also here. – gwr Aug 18 '16 at 10:47