Here my original matrix.
A =
60 27 45 72 22 14 56 2 8 39 18 12;
72 27 60 45 11 7 3 23 41 17 56 39]
Then, I want to change position value of column 1 until 4 in second row
in order that the same value can be arranged in same column.
Here, My desire matrix.
Res =
60 27 45 72 22 14 56 2 8 39 18 12;
60 27 45 72 11 7 3 23 41 17 56 39]
Thanks for your help.