home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts / statistics / distributions / hypergeometric_rnd.m < prev    next >
Encoding:
Text File  |  1998-10-23  |  1.4 KB  |  41 lines

  1. ## Copyright (C) 1997  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. ## Generate a random sample of size N from the hypergeometric
  18. ## distribution with parameters m, t, and n.
  19. ##
  20. ## The parameters m, t, and n must positive integers with m and n not
  21. ## greater than t.
  22.  
  23. function rnd = hypergeometric_rnd (N, m, t, n)
  24.  
  25.   if (nargin != 4)
  26.     usage ("hypergeometric_rnd (N, m, t, n)");
  27.   endif
  28.  
  29.   if ((m < 0) | (t < 0) | (n <= 0) | (m != round (m)) | 
  30.       (t != round (t)) | (n != round (n)) | (m > t) | (n > t))
  31.     if (prefer_column_vectors)
  32.       rnd = NaN * ones (N, 1)
  33.     else
  34.       rnd = NaN * ones (1, N)
  35.     endif
  36.   else
  37.     rnd = discrete_rnd (N, 0 : n, hypergeometric_pdf (0 : n, m, t, n));
  38.   endif
  39.  
  40. endfunction
  41.