1## Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2004, 2005, 2006,
2## 2007, 2008, 2009 John W. Eaton
4## This file is part of Octave.
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.
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.
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/>.
21## @deftypefn {Function File} {} kurtosis (@var{x}, @var{dim})
22## If @var{x} is a vector of length @math{N}, return the kurtosis
25## {\rm kurtosis} (x) = {1\over N \sigma(x)^4} \sum_{i=1}^N (x_i-\bar{x})^4 - 3
27## where $\bar{x}$ is the mean value of $x$.
32## kurtosis (x) = N^(-1) std(x)^(-4) sum ((x - mean(x)).^4) - 3
37## of @var{x}. If @var{x} is a matrix, return the kurtosis over the
38## first non-singleton dimension. The optional argument @var{dim}
39## can be given to force the kurtosis to be given over that
43## Author: KH <Kurt.Hornik@wu-wien.ac.at>
44## Created: 29 July 1994
47function retval = kurtosis (x, dim)
49 if (nargin != 1 && nargin != 2)
56 ## Find the first non-singleton dimension.
58 while (dim < nd + 1 && sz(dim) == 1)
65 if (! (isscalar (dim) && dim == round (dim))
68 error ("kurtosis: dim must be an integer and valid dimension");
73 error ("kurtosis: x has to be a matrix or a vector");
80 x = x - repmat (mean (x, dim), idx);
85 retval(ind) = x(ind) ./ (c * s(ind) .^ 4) - 3;
90%! x = [-1; 0; 0; 0; 1];
92%! assert(all (abs (kurtosis (y) - [-1.4, -1.4]) < sqrt (eps)));
96%!error kurtosis (1, 2, 3);