circshift(a,[0,-3])
It means that the row of A will not be changed, and the first three columns of A will be placed after it.
a = 1: 10; b=circshift(a,[0,-3])
b =
4 5 6 7 8 9 10 1 2 3