home *** CD-ROM | disk | FTP | other *** search
- function ylabel(string)
- %YLABEL Y-axis labels for 2-D and 3-D plots.
- % YLABEL('text') adds text beside the Y-axis on the current axis.
- %
- % See also XLABEL, ZLABEL, TITLE, TEXT.
-
- % Copyright (c) 1984-93 by The MathWorks, Inc.
-
- h = get(gca,'ylabel');
- if isempty(h)
- h = text;
- set(gca,'ylabel',h);
- end
- set(h,'string',string);
-
-