I have an array,A, with the dimensions
Dimensions[A] = {110, 105, 97} = {z,y,x}
These correspond to z,y,x values. I want the the z values to become y and the x to stay x. Which would result in the dimensions
Dimensions[A] = {105, 110, 97} = {y,z,x}
Transpose. IfDimensions[A]gives{110,105,97}, thenDimensions[Transpose[A]]gives{105,110,97}. – Quantum_Oli Apr 03 '17 at 12:11Dimensions@Transpose[RandomReal[1, {5, 4, 2}], {2, 1, 3}]– Kuba Apr 03 '17 at 12:25