]> Creatis software - CreaPhase.git/blob - octave_packages/statistics-1.1.3/expstat.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / statistics-1.1.3 / expstat.m
1 ## Copyright (C) 2006, 2007 Arno Onken <asnelt@asnelt.org>
2 ##
3 ## This program is free software; you can redistribute it and/or modify it under
4 ## the terms of the GNU General Public License as published by the Free Software
5 ## Foundation; either version 3 of the License, or (at your option) any later
6 ## version.
7 ##
8 ## This program is distributed in the hope that it will be useful, but WITHOUT
9 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
11 ## details.
12 ##
13 ## You should have received a copy of the GNU General Public License along with
14 ## this program; if not, see <http://www.gnu.org/licenses/>.
15
16 ## -*- texinfo -*-
17 ## @deftypefn {Function File} {[@var{m}, @var{v}] =} expstat (@var{l})
18 ## Compute mean and variance of the exponential distribution.
19 ##
20 ## @subheading Arguments
21 ##
22 ## @itemize @bullet
23 ## @item
24 ## @var{l} is the parameter of the exponential distribution. The
25 ## elements of @var{l} must be positive
26 ## @end itemize
27 ##
28 ## @subheading Return values
29 ##
30 ## @itemize @bullet
31 ## @item
32 ## @var{m} is the mean of the exponential distribution
33 ##
34 ## @item
35 ## @var{v} is the variance of the exponential distribution
36 ## @end itemize
37 ##
38 ## @subheading Example
39 ##
40 ## @example
41 ## @group
42 ## l = 1:6;
43 ## [m, v] = expstat (l)
44 ## @end group
45 ## @end example
46 ##
47 ## @subheading References
48 ##
49 ## @enumerate
50 ## @item
51 ## Wendy L. Martinez and Angel R. Martinez. @cite{Computational Statistics
52 ## Handbook with MATLAB}. Appendix E, pages 547-557, Chapman & Hall/CRC,
53 ## 2001.
54 ##
55 ## @item
56 ## Athanasios Papoulis. @cite{Probability, Random Variables, and Stochastic
57 ## Processes}. McGraw-Hill, New York, second edition, 1984.
58 ## @end enumerate
59 ## @end deftypefn
60
61 ## Author: Arno Onken <asnelt@asnelt.org>
62 ## Description: Moments of the exponential distribution
63
64 function [m, v] = expstat (l)
65
66   # Check arguments
67   if (nargin != 1)
68     print_usage ();
69   endif
70
71   if (! isempty (l) && ! ismatrix (l))
72     error ("expstat: l must be a numeric matrix");
73   endif
74
75   # Calculate moments
76   m = l;
77   v = m .^ 2;
78
79   # Continue argument check
80   k = find (! (l > 0) | ! (l < Inf));
81   if (any (k))
82     m(k) = NaN;
83     v(k) = NaN;
84   endif
85
86 endfunction
87
88 %!test
89 %! l = 1:6;
90 %! [m, v] = expstat (l);
91 %! assert (m, [1, 2, 3, 4, 5, 6], 0.001);
92 %! assert (v, [1, 4, 9, 16, 25, 36], 0.001);