Hello guys,
Simply, I have a bidimenional array myArr(r,c) and I want to restructurate it so that to have the transpose of it : myArr(c,r). Is it possible without any loop ? For example, instead of myArr(3,10) I would like to have the same information but reversing these two dimensions: myArr(10,3). Thanks in advance.