MATLAB Function Reference Previous page   Next Page
flipdim

Flip array along a specified dimension

Syntax

Description

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).

Examples

flipdim(A,1) where

produces

See Also

fliplr, flipud, permute, rot90


Previous page  fix fliplr Next page

© 1994-2005 The MathWorks, Inc.