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 |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
3191
|
19 |
3456
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} laplace_inv (@var{x}) |
|
22 ## For each element of @var{x}, compute the quantile (the inverse of the |
|
23 ## CDF) at @var{x} of the Laplace distribution. |
|
24 ## @end deftypefn |
3191
|
25 |
5428
|
26 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
3456
|
27 ## Description: Quantile function of the Laplace distribution |
3191
|
28 |
|
29 function inv = laplace_inv (x) |
|
30 |
|
31 if (nargin != 1) |
|
32 usage ("laplace_inv (x)"); |
|
33 endif |
|
34 |
4859
|
35 inv = (-Inf) * ones (size (x)); |
3191
|
36 |
|
37 k = find (isnan (x) | (x < 0) | (x > 1)); |
3456
|
38 if (any (k)) |
4859
|
39 inv(k) = NaN; |
3191
|
40 endif |
3426
|
41 |
3191
|
42 k = find (x == 1); |
3456
|
43 if (any (k)) |
4859
|
44 inv(k) = Inf; |
3191
|
45 endif |
3426
|
46 |
3191
|
47 k = find ((x > 0) & (x < 1)); |
3456
|
48 if (any (k)) |
|
49 inv(k) = ((x(k) < 1/2) .* log (2 * x(k)) |
|
50 - (x(k) > 1/2) .* log (2 * (1 - x(k)))); |
3191
|
51 endif |
|
52 |
4859
|
53 endfunction |