3191
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
3426
|
2 ## |
3922
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
3191
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
3426
|
9 ## |
3922
|
10 ## Octave is distributed in the hope that it will be useful, but |
3191
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
13 ## General Public License for more details. |
|
14 ## |
3191
|
15 ## You should have received a copy of the GNU General Public License |
3922
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
3191
|
19 |
3456
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} exponential_rnd (@var{lambda}, @var{r}, @var{c}) |
|
22 ## Return an @var{r} by @var{c} matrix of random samples from the |
|
23 ## exponential distribution with parameter @var{lambda}, which must be a |
|
24 ## scalar or of size @var{r} by @var{c}. |
3191
|
25 ## |
3456
|
26 ## If @var{r} and @var{c} are omitted, the size of the result matrix is |
|
27 ## the size of @var{lambda}. |
|
28 ## @end deftypefn |
3426
|
29 |
3456
|
30 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> |
|
31 ## Description: Random deviates from the exponential distribution |
3426
|
32 |
3191
|
33 function rnd = exponential_rnd (l, r, c) |
|
34 |
|
35 if (nargin == 3) |
3457
|
36 if (! (is_scalar (r) && (r > 0) && (r == round (r)))) |
3456
|
37 error ("exponential_rnd: r must be a positive integer"); |
3191
|
38 endif |
3457
|
39 if (! (is_scalar (c) && (c > 0) && (c == round (c)))) |
3456
|
40 error ("exponential_rnd: c must be a positive integer"); |
3191
|
41 endif |
|
42 [retval, l] = common_size (l, zeros (r, c)); |
|
43 if (retval > 0) |
3456
|
44 error ("exponential_rnd: lambda must be scalar or of size %d by %d", |
|
45 r, c); |
3191
|
46 endif |
|
47 elseif (nargin != 1) |
3456
|
48 usage ("exponential_rnd (lambda, r, c)"); |
3191
|
49 endif |
3426
|
50 |
3191
|
51 [r, c] = size (l); |
|
52 s = r * c; |
|
53 l = reshape (l, 1, s); |
|
54 rnd = zeros (1, s); |
3426
|
55 |
3191
|
56 k = find (!(l > 0) | !(l < Inf)); |
|
57 if (any (k)) |
|
58 rnd(k) = NaN * ones (1, length (k)); |
|
59 endif |
|
60 k = find ((l > 0) & (l < Inf)); |
|
61 if (any (k)) |
|
62 rnd(k) = - log (1 - rand (1, length (k))) ./ l(k); |
|
63 endif |
3426
|
64 |
3191
|
65 rnd = reshape (rnd, r, c); |
3426
|
66 |
3191
|
67 endfunction |