home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / general / logspace.m < prev    next >
Text File  |  1996-09-28  |  2KB  |  66 lines

  1. # Copyright (C) 1993, 1994, 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function retval = logspace (x1, x2, n)
  16.  
  17. # usage: logspace (x1, x2, n)
  18. #
  19. # Return a vector of n logarithmically equally spaced points between
  20. # x1 and x2 inclusive.
  21. #
  22. # If the final argument is omitted, n = 50 is assumed.
  23. #
  24. # All three arguments must be scalars. 
  25. #
  26. # Note that if if x2 is pi, the points are between 10^x1 and pi, NOT
  27. # 10^x1 and 10^pi.
  28. #
  29. # Yes, this is pretty stupid, because you could achieve the same
  30. # result with logspace (x1, log10 (pi)), but Matlab does this, and
  31. # claims that is useful for signal processing applications.
  32. #
  33. # See also: linspace
  34.  
  35.   if (nargin == 2)
  36.     npoints = 50;
  37.   elseif (nargin == 3)
  38.     if (length (n) == 1)
  39.       npoints = fix (n);
  40.     else
  41.       error ("logspace: arguments must be scalars");
  42.     endif  
  43.   else
  44.     usage ("logspace (x1, x2 [, n])");
  45.   endif
  46.  
  47.   if (npoints < 2)
  48.     error ("logspace: npoints must be greater than 2");
  49.   endif
  50.  
  51.   if (length (x1) == 1 && length (x2) == 1)
  52.     x2_tmp = x2;
  53.     if (x2 == pi)
  54.       x2_tmp = log10 (pi);
  55.     endif
  56.     retval = 10 .^ (linspace (x1, x2_tmp, npoints));
  57.   else
  58.     error ("logspace: arguments must be scalars");
  59.   endif
  60.  
  61. endfunction
  62.