]> Creatis software - CreaPhase.git/blob - octave_packages/m/statistics/distributions/geoinv.m
update packages
[CreaPhase.git] / octave_packages / m / statistics / distributions / geoinv.m
1 ## Copyright (C) 2012 Rik Wehbring
2 ## Copyright (C) 1995-2012 Kurt Hornik
3 ##
4 ## This file is part of Octave.
5 ##
6 ## Octave is free software; you can redistribute it and/or modify it
7 ## under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 3 of the License, or (at
9 ## your option) any later version.
10 ##
11 ## Octave is distributed in the hope that it will be useful, but
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ## General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with Octave; see the file COPYING.  If not, see
18 ## <http://www.gnu.org/licenses/>.
19
20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} {} geoinv (@var{x}, @var{p})
22 ## For each element of @var{x}, compute the quantile (the inverse of
23 ## the CDF) at @var{x} of the geometric distribution with parameter @var{p}.
24 ## @end deftypefn
25
26 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
27 ## Description: Quantile function of the geometric distribution
28
29 function inv = geoinv (x, p)
30
31   if (nargin != 2)
32     print_usage ();
33   endif
34
35   if (!isscalar (p))
36     [retval, x, p] = common_size (x, p);
37     if (retval > 0)
38       error ("geoinv: X and P must be of common size or scalars");
39     endif
40   endif
41
42   if (iscomplex (x) || iscomplex (p))
43     error ("geoinv: X and P must not be complex");
44   endif
45
46   if (isa (x, "single") || isa (p, "single"))
47     inv = NaN (size (x), "single");
48   else
49     inv = NaN (size (x));
50   endif
51
52   k = (x == 1) & (p >= 0) & (p <= 1);
53   inv(k) = Inf;
54
55   k = (x >= 0) & (x < 1) & (p > 0) & (p <= 1);
56   if (isscalar (p))
57     inv(k) = max (ceil (log (1 - x(k)) / log (1 - p)) - 1, 0);
58   else
59     inv(k) = max (ceil (log (1 - x(k)) ./ log (1 - p(k))) - 1, 0);
60   endif
61
62 endfunction
63
64
65 %!shared x
66 %! x = [-1 0 0.75 1 2];
67 %!assert(geoinv (x, 0.5*ones(1,5)), [NaN 0 1 Inf NaN]);
68 %!assert(geoinv (x, 0.5), [NaN 0 1 Inf NaN]);
69 %!assert(geoinv (x, 0.5*[1 -1 NaN 4 1]), [NaN NaN NaN NaN NaN]);
70 %!assert(geoinv ([x(1:2) NaN x(4:5)], 0.5), [NaN 0 NaN Inf NaN]);
71
72 %% Test class of input preserved
73 %!assert(geoinv ([x, NaN], 0.5), [NaN 0 1 Inf NaN NaN]);
74 %!assert(geoinv (single([x, NaN]), 0.5), single([NaN 0 1 Inf NaN NaN]));
75 %!assert(geoinv ([x, NaN], single(0.5)), single([NaN 0 1 Inf NaN NaN]));
76
77 %% Test input validation
78 %!error geoinv ()
79 %!error geoinv (1)
80 %!error geoinv (1,2,3)
81 %!error geoinv (ones(3),ones(2))
82 %!error geoinv (ones(2),ones(3))
83 %!error geoinv (i, 2)
84 %!error geoinv (2, i)
85