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