home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts.fat / specfun / log2.m < prev    next >
Text File  |  1999-04-29  |  2KB  |  50 lines

  1. ## Copyright (C) 1995, 1996  Kurt Hornik
  2. ## 
  3. ## This program is free software; you can redistribute it and/or modify
  4. ## it under the terms of the GNU General Public License as published by
  5. ## the Free Software Foundation; either version 2, or (at your option)
  6. ## any later version.
  7. ## 
  8. ## This program is distributed in the hope that it will be useful, but
  9. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. ## General Public License for more details. 
  12. ## 
  13. ## You should have received a copy of the GNU General Public License
  14. ## along with this file.  If not, write to the Free Software Foundation,
  15. ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16.  
  17. ## usage:  y = log2 (x) or [f, e] = log2 (x)
  18. ##
  19. ## y = log2 (x) returns the logarithm of base 2 of x.
  20. ##
  21. ## [f, e] = log2 (x) returns f and e with 1/2 <= abs(f) < 1 and
  22. ## x = f * 2^e.
  23.  
  24. ## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at>
  25. ## Created: 17 October 1994
  26. ## Adapted-By: jwe
  27.  
  28. function [f, e] = log2 (x)
  29.  
  30.   if (nargin != 1)
  31.     usage ("y = log2 (x) or [f, e] = log2 (x)");
  32.   endif
  33.  
  34.   if (nargout < 2)
  35.     f = log (x) / log (2);
  36.   elseif (nargout == 2)
  37.     ## Only deal with the real parts ...
  38.     x = real (x);
  39.     ## Since log (0) gives problems, 0 entries are replaced by 1.  
  40.     ## This is corrected later by multiplication with the sign.
  41.     f = abs (x) + (x == 0);
  42.     e = (floor (log (f) / log (2)) + 1) .* (x != 0);
  43.     f = sign (x) .* f ./ (2 .^ e);
  44.   else
  45.     error ("log2 takes at most 2 output arguments");
  46.   endif
  47.  
  48. endfunction
  49.  
  50.