| MATLAB Function Reference | Search  Help Desk |
| flipdim | Examples See Also |
Flip array along a specified dimension
B = flipdim(A,dim)
B = flipdim(A,dim)
returns A with dimension dim flipped.
When the value of dim is 1, the array is flipped row-wise down. When dim is 2, the array is flipped columnwise left to right. flipdim(A,1) is the same as flipud(A), and flipdim(A,2) is the same as fliplr(A).
flipdim(A,1) where
A =
1 4
2 5
3 6
produces
3 6
2 5
1 4
fliplr Flip matrices left-right
flipud Flip matrices up-down
permute Rearrange the dimensions of a multidimensional array
rot90 Rotate matrix 90°