wsetxlab.m
上传用户:haiyisale
上传日期:2013-01-09
资源大小:3246k
文件大小:1k
源码类别:

波变换

开发平台:

Matlab

  1. function wsetxlab(axe,strxlab,col,vis)
  2. %WSETXLAB Plot xlabel.
  3. %    WSETXLAB(AXE,STRXLAB,COL,VIS)
  4. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Mar-96.
  5. %   Last Revision: 01-May-1998.
  6. %   Copyright 1995-2002 The MathWorks, Inc.
  7. % $Revision: 1.10 $
  8. xlab = get(axe,'Xlabel');
  9. if nargin<4 , 
  10.     vis = 'on';
  11.     if nargin<3 , col = get(xlab,'Color'); end
  12. end
  13. set(xlab,...
  14.         'String',strxlab, ...
  15.         'Visible',vis, ...
  16.         'FontSize',get(axe,'FontSize'),...
  17.         'Color',col ...
  18.         );