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

波变换

开发平台:

Matlab

  1. function s = deblankl(x)
  2. %DEBLANKL Convert string to lowercase without blanks.
  3. %   S = DEBLANKL(X) is the string X converted to lowercase 
  4. %   without blanks.
  5. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 01-May-96.
  6. %   Last Revision: 25-May-2003.
  7. %   Copyright 1995-2004 The MathWorks, Inc.
  8. % $Revision: 1.10.4.2 $
  9. if ~isempty(x)
  10.     s = lower(x);
  11.     s = s(s~=' ');
  12. else
  13.     s = [];
  14. end