]> Creatis software - CreaPhase.git/blob - octave_packages/m/statistics/distributions/gamrnd.m
update packages
[CreaPhase.git] / octave_packages / m / statistics / distributions / gamrnd.m
1 ## Copyright (C) 2012 Rik Wehbring
2 ## Copyright (C) 1995-2012 Kurt Hornik
3 ##
4 ## This file is part of Octave.
5 ##
6 ## Octave is free software; you can redistribute it and/or modify it
7 ## under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 3 of the License, or (at
9 ## your option) any later version.
10 ##
11 ## Octave is distributed in the hope that it will be useful, but
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ## General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with Octave; see the file COPYING.  If not, see
18 ## <http://www.gnu.org/licenses/>.
19
20 ## -*- texinfo -*-
21 ## @deftypefn  {Function File} {} gamrnd (@var{a}, @var{b})
22 ## @deftypefnx {Function File} {} gamrnd (@var{a}, @var{b}, @var{r})
23 ## @deftypefnx {Function File} {} gamrnd (@var{a}, @var{b}, @var{r}, @var{c}, @dots{})
24 ## @deftypefnx {Function File} {} gamrnd (@var{a}, @var{b}, [@var{sz}])
25 ## Return a matrix of random samples from the Gamma distribution with
26 ## shape parameter @var{a} and scale @var{b}.
27 ##
28 ## When called with a single size argument, return a square matrix with
29 ## the dimension specified.  When called with more than one scalar argument the
30 ## first two arguments are taken as the number of rows and columns and any
31 ## further arguments specify additional matrix dimensions.  The size may also
32 ## be specified with a vector of dimensions @var{sz}.
33 ## 
34 ## If no size arguments are given then the result matrix is the common size of
35 ## @var{a} and @var{b}.
36 ## @end deftypefn
37
38 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
39 ## Description: Random deviates from the Gamma distribution
40
41 function rnd = gamrnd (a, b, varargin)
42
43   if (nargin < 2)
44     print_usage ();
45   endif
46
47   if (!isscalar (a) || !isscalar (b))
48     [retval, a, b] = common_size (a, b);
49     if (retval > 0)
50       error ("gamrnd: A and B must be of common size or scalars");
51     endif
52   endif
53
54   if (iscomplex (a) || iscomplex (b))
55     error ("gamrnd: A and B must not be complex");
56   endif
57
58   if (nargin == 2)
59     sz = size (a);
60   elseif (nargin == 3)
61     if (isscalar (varargin{1}) && varargin{1} >= 0)
62       sz = [varargin{1}, varargin{1}];
63     elseif (isrow (varargin{1}) && all (varargin{1} >= 0))
64       sz = varargin{1};
65     else
66       error ("gamrnd: dimension vector must be row vector of non-negative integers");
67     endif
68   elseif (nargin > 3)
69     if (any (cellfun (@(x) (!isscalar (x) || x < 0), varargin)))
70       error ("gamrnd: dimensions must be non-negative integers");
71     endif
72     sz = [varargin{:}];
73   endif
74
75   if (!isscalar (a) && !isequal (size (a), sz))
76     error ("gamrnd: A and B must be scalar or of size SZ");
77   endif
78
79   if (isa (a, "single") || isa (b, "single"))
80     cls = "single";
81   else
82     cls = "double";
83   endif
84
85   if (isscalar (a) && isscalar (b))
86     if ((a > 0) && (a < Inf) && (b > 0) && (b < Inf))
87       rnd = b * randg (a, sz);
88       if (strcmp (cls, "single"))
89         rnd = single (rnd);
90       endif
91     else 
92       rnd = NaN (sz, cls);
93     endif
94   else
95     rnd = NaN (sz, cls);
96
97     k = (a > 0) & (a < Inf) & (b > 0) & (b < Inf);
98     rnd(k) = b(k) .* randg (a(k));
99   endif
100
101 endfunction
102
103
104 %!assert(size (gamrnd (1,2)), [1, 1]);
105 %!assert(size (gamrnd (ones(2,1), 2)), [2, 1]);
106 %!assert(size (gamrnd (ones(2,2), 2)), [2, 2]);
107 %!assert(size (gamrnd (1, 2*ones(2,1))), [2, 1]);
108 %!assert(size (gamrnd (1, 2*ones(2,2))), [2, 2]);
109 %!assert(size (gamrnd (1, 2, 3)), [3, 3]);
110 %!assert(size (gamrnd (1, 2, [4 1])), [4, 1]);
111 %!assert(size (gamrnd (1, 2, 4, 1)), [4, 1]);
112
113 %% Test class of input preserved
114 %!assert(class (gamrnd (1, 2)), "double");
115 %!assert(class (gamrnd (single(1), 2)), "single");
116 %!assert(class (gamrnd (single([1 1]), 2)), "single");
117 %!assert(class (gamrnd (1, single(2))), "single");
118 %!assert(class (gamrnd (1, single([2 2]))), "single");
119
120 %% Test input validation
121 %!error gamrnd ()
122 %!error gamrnd (1)
123 %!error gamrnd (ones(3),ones(2))
124 %!error gamrnd (ones(2),ones(3))
125 %!error gamrnd (i, 2)
126 %!error gamrnd (2, i)
127 %!error gamrnd (1,2, -1)
128 %!error gamrnd (1,2, ones(2))
129 %!error gamrnd (1, 2, [2 -1 2])
130 %!error gamrnd (1,2, 1, ones(2))
131 %!error gamrnd (1,2, 1, -1)
132 %!error gamrnd (ones(2,2), 2, 3)
133 %!error gamrnd (ones(2,2), 2, [3, 2])
134 %!error gamrnd (ones(2,2), 2, 2, 3)
135