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

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