Return a copy of x with the order of the columns reversed. For example, fliplr ([1, 2; 3, 4]) 2 1 4 3 Note that fliplr only work with 2-D arrays. To flip N-d arrays use flipdim instead. See also: flipud flipdim rot90 rotdim
Return a copy of x with the order of the columns reversed. For example,
fliplr ([1, 2; 3, 4]) 2 1 4 3
Note that fliplr only work with 2-D arrays. To flip N-d arrays use flipdim instead.
fliplr
flipdim