7017
|
1 ## Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2005, 2006, 2007 |
|
2 ## Friedrich Leisch |
3426
|
3 ## |
3922
|
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 |
7016
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3426
|
10 ## |
3922
|
11 ## Octave is distributed in the hope that it will be useful, but |
3191
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
14 ## General Public License for more details. |
|
15 ## |
3191
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3191
|
19 |
3449
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} autocor (@var{x}, @var{h}) |
|
22 ## Return the autocorrelations from lag 0 to @var{h} of vector @var{x}. |
|
23 ## If @var{h} is omitted, all autocorrelations are computed. |
3499
|
24 ## If @var{x} is a matrix, the autocorrelations of each column are |
3426
|
25 ## computed. |
3449
|
26 ## @end deftypefn |
3426
|
27 |
3457
|
28 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
|
29 ## Description: Compute autocorrelations |
3426
|
30 |
3191
|
31 function retval = autocor (X, h) |
3426
|
32 |
3191
|
33 if (nargin == 1) |
|
34 retval = autocov (X); |
|
35 elseif (nargin == 2) |
|
36 retval = autocov (X, h); |
|
37 else |
6046
|
38 print_usage (); |
3191
|
39 endif |
3426
|
40 |
3191
|
41 if (min (retval (1,:)) != 0) |
3457
|
42 retval = retval ./ (ones (rows (retval), 1) * retval(1,:)); |
3191
|
43 endif |
3426
|
44 |
3191
|
45 endfunction |
3426
|
46 |
3191
|
47 |
3426
|
48 |