home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / utils / mathstud / flip.m < prev    next >
Encoding:
Text File  |  1995-05-19  |  216 b   |  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.