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 / miscellaneous / list_primes.m < prev    next >
Text File  |  1996-09-28  |  2KB  |  80 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 = list_primes (n)
  16.  
  17. # usage: list_primes (n)
  18. #
  19. # List the first n primes.  If n is unspecified, the first 30 primes
  20. # are listed.
  21. #
  22. # The algorithm used is from page 218 of the TeXbook.
  23.  
  24.   if (nargin > 0)
  25.     if (! is_scalar (n))
  26.       error ("list_primes: argument must be a scalar");
  27.     endif
  28.   endif
  29.  
  30.   if (nargin == 0)
  31.     n = 30;
  32.   endif
  33.  
  34.   if (n == 1)
  35.     retval = 2;
  36.     return;
  37.   endif
  38.  
  39.   if (n == 2)
  40.     retval = [2; 3];
  41.     return;
  42.   endif
  43.  
  44.   retval = zeros (1, n);
  45.   retval (1) = 2;
  46.   retval (2) = 3;
  47.  
  48.   n = n - 2;
  49.   i = 3;
  50.   p = 5;
  51.   while (n > 0)
  52.  
  53.     is_prime = 1;
  54.     is_unknown = 1;
  55.     d = 3;
  56.     while (is_unknown)
  57.       a = fix (p / d);
  58.       if (a <= d)
  59.         is_unknown = 0;
  60.       endif
  61.       if (a * d == p)
  62.         is_prime = 0;
  63.         is_unknown = 0;
  64.       endif
  65.       d = d + 2;
  66.     endwhile
  67.  
  68.     if (is_prime)
  69.       retval (i++) = p;
  70.       n--;
  71.     endif
  72.     p = p + 2;
  73.  
  74.   endwhile
  75.  
  76. endfunction