home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts / statistics / distributions / beta_rnd.m < prev    next >
Encoding:
Text File  |  1997-03-04  |  2.3 KB  |  72 lines

  1. ## Copyright (C) 1995, 1996, 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. ## usage:  beta_rnd (a, b [, r, c])
  18. ##
  19. ## beta_rnd (a, b) returns a matrix of random samples from the Beta
  20. ## distribution with parameters a and b.  The size of the matrix is the
  21. ## common size of a and b.
  22. ##
  23. ## beta_rnd (a, b, r, c) returns an r by c matrix of random samples from
  24. ## the Beta distribution with parameters a and b.  Both a and b must be
  25. ## scalar or of size r by c.
  26.   
  27. ## Author:  KH <Kurt.Hornik@ci.tuwien.ac.at>
  28. ## Description:  Random deviates from the Beta distribution
  29.  
  30. function rnd = beta_rnd (a, b, r, c)
  31.  
  32.   if (nargin == 4)
  33.     if ( !(is_scalar (r) && (r > 0) && (r == round (r))) )
  34.       error ("beta_rnd:  r must be a positive integer");
  35.     endif
  36.     if ( !(is_scalar (c) && (c > 0) && (c == round (c))) )
  37.       error ("beta_rnd:  c must be a positive integer");
  38.     endif
  39.     [retval, a, b] = common_size (a, b, zeros (r, c));
  40.     if (retval > 0)
  41.       error (strcat("beta_rnd:  ",
  42.             "a and b must be scalar or of size ",
  43.             sprintf ("%d by %d", r, c)));
  44.     endif
  45.   elseif (nargin == 2)
  46.     [retval, a, b] = common_size (a, b);
  47.     if (retval > 0)
  48.       error ("beta_rnd:  a and b must be of common size or scalar");
  49.     endif
  50.   else
  51.     usage ("beta_rnd (a, b [, r, c])");
  52.   endif
  53.  
  54.   [r, c] = size (a);
  55.   s = r * c;
  56.   a = reshape (a, 1, s);
  57.   b = reshape (b, 1, s);
  58.   rnd = zeros (1, s);
  59.   
  60.   k = find (!(a > 0) | !(a < Inf) | !(b > 0) | !(b < Inf));
  61.   if (any (k))
  62.     rnd(k) = NaN * ones (1, length (k));
  63.   endif
  64.   
  65.   k = find ((a > 0) & (a < Inf) & (b > 0) & (b < Inf));
  66.   if (any (k))
  67.     rnd(k) = beta_inv (rand (1, length (k)), a(k), b(k));
  68.   endif
  69.   
  70.   rnd = reshape (rnd, r, c);
  71.   
  72. endfunction