home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / WINDOWS / DIVERSEN / MATHS171 / FLIP.M < prev    next >
Text File  |  1993-03-23  |  216b  |  10 lines

  1. function y = flip(x)
  2. % y=flip(x)
  3. % reverse the order of the argument columns AND rows
  4. % y = fliplr(flipud(x));
  5.  
  6. %       S.Halevy 7/31/92
  7. %       Copyright (c) 1992 by the MathWizards
  8.  
  9. y = fliplr(flipud(x));
  10.