]> Creatis software - CreaPhase.git/blob - octave_packages/m/statistics/distributions/poisscdf.m
update packages
[CreaPhase.git] / octave_packages / m / statistics / distributions / poisscdf.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} {} poisscdf (@var{x}, @var{lambda})
22 ## For each element of @var{x}, compute the cumulative distribution
23 ## function (CDF) at @var{x} of the Poisson distribution with parameter
24 ## lambda.
25 ## @end deftypefn
26
27 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
28 ## Description: CDF of the Poisson distribution
29
30 function cdf = poisscdf (x, lambda)
31
32   if (nargin != 2)
33     print_usage ();
34   endif
35
36   if (!isscalar (lambda))
37     [retval, x, lambda] = common_size (x, lambda);
38     if (retval > 0)
39       error ("poisscdf: X and LAMBDA must be of common size or scalars");
40     endif
41   endif
42
43   if (iscomplex (x) || iscomplex (lambda))
44     error ("poisscdf: X and LAMBDA must not be complex");
45   endif
46
47   if (isa (x, "single") || isa (lambda, "single"))
48     cdf = zeros (size (x), "single");
49   else
50     cdf = zeros (size (x));
51   endif
52
53   k = isnan (x) | !(lambda > 0);
54   cdf(k) = NaN;
55
56   k = (x == Inf) & (lambda > 0);
57   cdf(k) = 1;
58
59   k = (x >= 0) & (x < Inf) & (lambda > 0);
60   if (isscalar (lambda))
61     cdf(k) = 1 - gammainc (lambda, floor (x(k)) + 1);
62   else
63     cdf(k) = 1 - gammainc (lambda(k), floor (x(k)) + 1);
64   endif
65
66 endfunction
67
68
69 %!shared x,y
70 %! x = [-1 0 1 2 Inf];
71 %! y = [0, gammainc(1, (x(2:4) +1), 'upper'), 1];
72 %!assert(poisscdf (x, ones(1,5)), y);
73 %!assert(poisscdf (x, 1), y);
74 %!assert(poisscdf (x, [1 0 NaN 1 1]), [y(1) NaN NaN y(4:5)]);
75 %!assert(poisscdf ([x(1:2) NaN Inf x(5)], 1), [y(1:2) NaN 1 y(5)]);
76
77 %% Test class of input preserved
78 %!assert(poisscdf ([x, NaN], 1), [y, NaN]);
79 %!assert(poisscdf (single([x, NaN]), 1), single([y, NaN]), eps("single"));
80 %!assert(poisscdf ([x, NaN], single(1)), single([y, NaN]), eps("single"));
81
82 %% Test input validation
83 %!error poisscdf ()
84 %!error poisscdf (1)
85 %!error poisscdf (1,2,3)
86 %!error poisscdf (ones(3),ones(2))
87 %!error poisscdf (ones(2),ones(3))
88 %!error poisscdf (i, 2)
89 %!error poisscdf (2, i)
90