home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts.fat / strings / dec2bin.m < prev    next >
Text File  |  1999-04-29  |  2KB  |  64 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:  dec2bin (x)
  21. ##
  22. ## Returns the binary number corresponding to the nonnegative integer
  23. ## x.  For example, dec2bin (14) returns "1110".
  24.  
  25. ## Author: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
  26. ## Adapted-By: jwe
  27.  
  28. function y = dec2bin (x)
  29.  
  30.   if (nargin != 1)
  31.     usage ("dec2bin (x)");
  32.   endif
  33.  
  34.   [nr, nc] = size (x);
  35.  
  36.   len = nr * nc;
  37.  
  38.   x = reshape (x, 1, len);
  39.  
  40.   eleo = empty_list_elements_ok;
  41.   unwind_protect
  42.     empty_list_elements_ok = 1;
  43.     y = [];
  44.     for i = 1:len
  45.       tmp = x (i);
  46.       if (tmp == round (tmp) && tmp >= 0)
  47.     while (tmp >= 2)
  48.       z = fix (tmp ./ 2);
  49.       y = [y, tmp - 2 * z];
  50.       tmp = z;
  51.     endwhile
  52.     y = [y, tmp];
  53.       else
  54.     error ("dec2hex: invalid conversion");
  55.       endif
  56.     endfor
  57.     y = fliplr (y);
  58.     y = setstr (y + toascii ("0"));
  59.   unwind_protect_cleanup
  60.     empty_list_elements_ok = eleo;
  61.   end_unwind_protect
  62.  
  63. endfunction
  64.