home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / GRAPHICS.DI$ / CLG.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  261 b   |  15 lines

  1. function clg(arg1);
  2. %CLG     Clear Figure (graph window).
  3. %    CLG is a pseudonym for CLF, provided for upward compatibility
  4. %    from MATLAB 3.5.
  5. %    See also CLF.
  6.  
  7. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  8.  
  9. if(nargin == 0)
  10.     clf;
  11. else
  12.     clf(arg1);
  13. end
  14.  
  15.