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

  1. function title(string)
  2. %TITLE    Titles for 2-D and 3-D plots.
  3. %     TITLE('text') adds text at the top of the current axis.
  4. %
  5. %    See also XLABEL, YLABEL, ZLABEL, TEXT.
  6.  
  7. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  8.  
  9. h = get(gca,'title');
  10. if isempty(h)
  11.         h = text('horiz','center');
  12.         set(gca,'title',h);
  13. end
  14. set(h,'string',string);
  15.  
  16.