home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts / control / dezero.m < prev    next >
Encoding:
Text File  |  1999-12-15  |  1.6 KB  |  58 lines

  1. ## Copyright (C) 1996 Kurt Hornik
  2. ##
  3. ## This file is part of Octave.
  4. ##
  5. ## Octave is free software; you can redistribute it and/or modify it
  6. ## under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  9. ##
  10. ## Octave is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with Octave; see the file COPYING.  If not, write to the Free
  17. ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19.  
  20. ## usage:  dezero (s)
  21. ##
  22. ## Remove trailing blank entries and all zero entries from the string s.
  23.  
  24. ## Author: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
  25. ## Adapted-By: jwe
  26. ## Adapted from deblank by A. S. Hodel (a.s.hodel@eng.auburn.edu)
  27. ##     (the name dezero is a reference to the Fermilab D0 experiment,
  28. ##      where my sister did her PhD research) 
  29.  
  30. function t = dezero (s)
  31.  
  32.   ## delete the next line if you're stubbornly going to use dezero.
  33.   error("dezero is no longer supported.");
  34.  
  35.   if (nargin != 1)
  36.     usage ("dezero (s)");
  37.   elseif (isstr (s))
  38.  
  39.     [nr, nc] = size (s);
  40.     len = nr * nc;
  41.  
  42.     if (len == 0)
  43.       t = s;
  44.     else
  45.  
  46.       s = reshape (s, 1, len);
  47.  
  48.       ## need to remove zeros first, then call deblank
  49.       s = toascii (s);
  50.       t = deblank(setstr(s(find(s != 0) )));
  51.     endif
  52.  
  53.   else
  54.     error ("dezero: expecting string argument");
  55.   endif
  56.  
  57. endfunction
  58.