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