MATLAB: How to convert a given data in 3D format

3d arrayplanes as array

how to convert
F(1,1,1),F(1,2,1),F(1,3,1),F(1,1,2),F(1,2,2),F(1,3,2),F(1,1,3),F(1,2,3),F(1,3,3),F(1,1,4),F(1,2,4),F(1,3,4)
F(2,1,1),F(2,2,1),F(2,3,1),F(2,1,2),F(2,2,2),F(2,3,2),F(2,1,3),F(2,2,3),F(2,3,3),F(2,1,4),F(2,2,4),F(2,3,4)
set of 3d value into a matrix of plane
[(1,1,1) (1,1,2) (1,1,3) (1,1,4);
(1,2,1) (1,2,2) (1,2,3) (1,2,4);
(1,3,1) (1,3,2) (1,3,3) (1,3,4);
(1,4,1) (1,4,2) (1,4,3) (1,4,4)]
and
[(2,1,1) (2,1,2) (2,1,3) (2,1,4);
(2,2,1) (2,2,2) (2,2,3) (2,2,4);
(2,3,1) (2,3,2) (2,3,3) (2,3,4);
(2,4,1) (2,4,2) (2,4,3) (2,4,4)]

Best Answer

One of the following:
permute(F, [1 3 2])
permute(F, [2 1 3])
permute(F, [2 3 1])
permute(F, [3 1 2])
permute(F, [3 2 1])