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} {} cauchy_rnd (@var{lambda}, @var{sigma}, @var{r}, @var{c}) |
|
22 ## Return an @var{r} by @var{c} matrix of random samples from the Cauchy |
|
23 ## distribution with parameters @var{lambda} and @var{sigma} which must |
|
24 ## both be 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 common size of @var{lambda} and @var{sigma}. |
|
28 ## @end deftypefn |
3426
|
29 |
3456
|
30 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> |
|
31 ## Description: Random deviates from the Cauchy distribution |
3191
|
32 |
|
33 function rnd = cauchy_rnd (l, scale, r, c) |
3426
|
34 |
3191
|
35 if (nargin == 4) |
3457
|
36 if (! (is_scalar (r) && (r > 0) && (r == round (r)))) |
3456
|
37 error ("cauchy_rnd: r must be a positive integer"); |
3191
|
38 endif |
3457
|
39 if (! (is_scalar (c) && (c > 0) && (c == round (c)))) |
3456
|
40 error ("cauchy_rnd: c must be a positive integer"); |
3191
|
41 endif |
|
42 [retval, l, scale] = common_size (l, scale, zeros (r, c)); |
|
43 if (retval > 0) |
3456
|
44 error ("cauchy_rnd: lambda and sigma must be scalar or of size %d by %d", |
|
45 r, c); |
3191
|
46 endif |
|
47 elseif (nargin == 2) |
|
48 [retval, l, scale] = common_size (l, scale); |
|
49 if (retval > 0) |
3456
|
50 error ("cauchy_rnd: lambda and sigma must be of common size or scalar"); |
3191
|
51 endif |
|
52 [r, c] = size (l); |
|
53 else |
3456
|
54 usage ("cauchy_rnd (lambda, sigma, r, c)"); |
3191
|
55 endif |
3426
|
56 |
3191
|
57 s = r * c; |
|
58 l = reshape (l, 1, s); |
|
59 scale = reshape (scale, 1, s); |
3426
|
60 |
3191
|
61 rnd = NaN * ones (1, s); |
3426
|
62 |
3191
|
63 k = find ((l > -Inf) & (l < Inf) & (scale > 0) & (scale < Inf)); |
|
64 if (any (k)) |
|
65 rnd(k) = l(k) - cot (pi * rand (1, length (k))) .* scale(k); |
|
66 endif |
|
67 |
|
68 rnd = reshape (rnd, r, c); |
3426
|
69 |
3191
|
70 endfunction |