5693
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
|
2 ## |
|
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 |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
|
19 |
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} wblrnd (@var{scale}, @var{shape}, @var{r}, @var{c}) |
|
22 ## @deftypefnx {Function File} {} wblrnd (@var{scale}, @var{shape}, @var{sz}) |
|
23 ## Return an @var{r} by @var{c} matrix of random samples from the |
|
24 ## Weibull distribution with parameters @var{scale} and @var{shape} |
|
25 ## which must be scalar or of size @var{r} by @var{c}. Or if @var{sz} |
|
26 ## is a vector return a matrix of size @var{sz}. |
|
27 ## |
|
28 ## If @var{r} and @var{c} are omitted, the size of the result matrix is |
|
29 ## the common size of @var{alpha} and @var{sigma}. |
|
30 ## @end deftypefn |
|
31 |
|
32 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
|
33 ## Description: Random deviates from the Weibull distribution |
|
34 |
|
35 function rnd = wblrnd (scale, shape, r, c) |
|
36 |
|
37 if (nargin > 1) |
|
38 if (!isscalar(shape) || !isscalar(scale)) |
|
39 [retval, shape, scale] = common_size (shape, scale); |
|
40 if (retval > 0) |
|
41 error ("wblrnd: shape and scale must be of common size or scalar"); |
|
42 endif |
|
43 endif |
|
44 endif |
|
45 |
|
46 if (nargin == 4) |
|
47 if (! (isscalar (r) && (r > 0) && (r == round (r)))) |
|
48 error ("wblrnd: r must be a positive integer"); |
|
49 endif |
|
50 if (! (isscalar (c) && (c > 0) && (c == round (c)))) |
|
51 error ("wblrnd: c must be a positive integer"); |
|
52 endif |
|
53 sz = [r, c]; |
|
54 |
|
55 if (any (size (scale) != 1) && |
|
56 ((length (size (scale)) != length (sz)) || |
|
57 any (size (scale) != sz))) |
|
58 error ("wblrnd: shape and scale must be scalar or of size [r, c]"); |
|
59 endif |
|
60 elseif (nargin == 3) |
|
61 if (isscalar (r) && (r > 0)) |
|
62 sz = [r, r]; |
|
63 elseif (isvector(r) && all (r > 0)) |
|
64 sz = r(:)'; |
|
65 else |
|
66 error ("wblrnd: r must be a postive integer or vector"); |
|
67 endif |
|
68 |
|
69 if (any (size (scale) != 1) && |
|
70 ((length (size (scale)) != length (sz)) || |
|
71 any (size (scale) != sz))) |
|
72 error ("wblrnd: shape and scale must be scalar or of size sz"); |
|
73 endif |
|
74 elseif (nargin == 2) |
|
75 sz = size(shape); |
|
76 else |
6046
|
77 print_usage (); |
5693
|
78 endif |
|
79 |
|
80 if (isscalar (shape) && isscalar (scale)) |
|
81 if ((shape > 0) & (shape < Inf) & (scale > 0) & (scale < Inf)) |
6350
|
82 rnd = scale .* rande(sz) .^ (1./shape); |
5693
|
83 else |
|
84 rnd = NaN * ones (sz); |
|
85 endif |
|
86 else |
6350
|
87 rnd = scale .* rande(sz) .^ (1./shape); |
|
88 k = find ((shape <= 0) | (shape == Inf) | (scale <= 0) & (scale == Inf)); |
|
89 if (any(k)) |
|
90 rnd(k) = NaN; |
5693
|
91 endif |
|
92 endif |
|
93 |
|
94 endfunction |
|
95 |