]> Creatis software - CreaPhase.git/blob - octave_packages/m/statistics/distributions/chi2pdf.m
update packages
[CreaPhase.git] / octave_packages / m / statistics / distributions / chi2pdf.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} {} chi2pdf (@var{x}, @var{n})
22 ## For each element of @var{x}, compute the probability density function
23 ## (PDF) at @var{x} of the chi-square distribution with @var{n} degrees
24 ## of freedom.
25 ## @end deftypefn
26
27 ## Author: TT <Teresa.Twaroch@ci.tuwien.ac.at>
28 ## Description: PDF of the chi-square distribution
29
30 function pdf = chi2pdf (x, n)
31
32   if (nargin != 2)
33     print_usage ();
34   endif
35
36   if (!isscalar (n))
37     [retval, x, n] = common_size (x, n);
38     if (retval > 0)
39       error ("chi2pdf: X and N must be of common size or scalars");
40     endif
41   endif
42
43   if (iscomplex (x) || iscomplex (n))
44     error ("chi2pdf: X and N must not be complex");
45   endif
46
47   pdf = gampdf (x, n/2, 2);
48
49 endfunction
50
51
52 %!shared x,y
53 %! x = [-1 0 0.5 1 Inf];
54 %! y = [0, 1/2 * exp(-x(2:5)/2)];
55 %!assert(chi2pdf (x, 2*ones(1,5)), y);
56 %!assert(chi2pdf (x, 2), y);
57 %!assert(chi2pdf (x, 2*[1 0 NaN 1 1]), [y(1) NaN NaN y(4:5)]);
58 %!assert(chi2pdf ([x, NaN], 2), [y, NaN]);
59
60 %% Test class of input preserved
61 %!assert(chi2pdf (single([x, NaN]), 2), single([y, NaN]));
62 %!assert(chi2pdf ([x, NaN], single(2)), single([y, NaN]));
63
64 %% Test input validation
65 %!error chi2pdf ()
66 %!error chi2pdf (1)
67 %!error chi2pdf (1,2,3)
68 %!error chi2pdf (ones(3),ones(2))
69 %!error chi2pdf (ones(2),ones(3))
70 %!error chi2pdf (i, 2)
71 %!error chi2pdf (2, i)
72