home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts / control / dezero.m < prev    next >
Text File  |  1999-03-05  |  2KB  |  63 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.     save_val = implicit_str_to_num_ok;
  40.     implicit_str_to_num_ok = 1;
  41.  
  42.     [nr, nc] = size (s);
  43.     len = nr * nc;
  44.  
  45.     if (len == 0)
  46.       t = s;
  47.     else
  48.  
  49.       s = reshape (s, 1, len);
  50.  
  51.       # need to remove zeros first, then call deblank
  52.       s = 1*s;
  53.       t = deblank(setstr(s(find(s != 0) )));
  54.     endif
  55.  
  56.     implicit_str_to_num_ok = save_val;
  57.  
  58.   else
  59.     error ("dezero: expecting string argument");
  60.   endif
  61.  
  62. endfunction
  63.