Hello, I have a matrix with 2 rows and 500 columns. I need to reshape it to be 200 rows and 5 columns, with the original matrix chopped off after the 5 column for each row and the remaining moving to the next row. for example what I have now is 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 i want it to look like 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32..and so on