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

  1. function h = gca()
  2. %GCA    Get current axis handle.
  3. %    H = GCA returns the handle to the current axis. The current
  4. %    axis is the axis that graphics commands like PLOT, TITLE,
  5. %    SURF, etc. draw to if issued.
  6. %
  7. %    Use the commands AXES or SUBPLOT to change the current axis
  8. %    to a different axis, or to create new ones.
  9. %
  10. %    See also AXES,SUBPLOT,DELETE,CLA,HOLD,GCF.
  11.  
  12. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  13.  
  14. h = get(get(0,'CurrentFigure'),'CurrentAxes');
  15.