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_inv (@var{x}, @var{lambda}) |
|
22 ## For each element of @var{x}, compute the quantile (the inverse of the |
|
23 ## CDF) at @var{x} of the exponential distribution with parameter |
|
24 ## @var{lambda}. |
|
25 ## @end deftypefn |
3426
|
26 |
3456
|
27 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> |
|
28 ## Description: Quantile function of the exponential distribution |
3191
|
29 |
|
30 function inv = exponential_inv (x, l) |
3426
|
31 |
3191
|
32 if (nargin != 2) |
|
33 usage ("exponential_inv (x, lambda)"); |
|
34 endif |
3426
|
35 |
3191
|
36 [retval, x, l] = common_size (x, l); |
|
37 if (retval > 0) |
3456
|
38 error ("exponential_inv: x and lambda must be of common size or scalar"); |
3191
|
39 endif |
|
40 |
|
41 [r, c] = size (x); |
|
42 s = r * c; |
|
43 x = reshape (x, 1, s); |
|
44 l = reshape (l, 1, s); |
|
45 inv = zeros (1, s); |
3426
|
46 |
3191
|
47 k = find (!(l > 0) | (x < 0) | (x > 1) | isnan (x)); |
3456
|
48 if (any (k)) |
3191
|
49 inv(k) = NaN * ones (1, length (k)); |
|
50 endif |
3426
|
51 |
3191
|
52 k = find ((x == 1) & (l > 0)); |
3456
|
53 if (any (k)) |
3191
|
54 inv(k) = Inf * ones (1, length (k)); |
|
55 endif |
3426
|
56 |
3191
|
57 k = find ((x > 0) & (x < 1) & (l > 0)); |
3456
|
58 if (any (k)) |
3191
|
59 inv(k) = - log (1 - x(k)) ./ l(k); |
|
60 endif |
|
61 |
|
62 inv = reshape (inv, r, c); |
3426
|
63 |
3191
|
64 endfunction |