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 |
3191
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## 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 |
3922
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
3191
|
19 |
3449
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} autocov (@var{x}, @var{h}) |
|
22 ## Return the autocovariances from lag 0 to @var{h} of vector @var{x}. |
|
23 ## If @var{h} is omitted, all autocovariances are computed. |
|
24 ## If @var{x} is a matrix, the autocovariances of each column are |
3426
|
25 ## computed. |
3449
|
26 ## @end deftypefn |
3191
|
27 |
3457
|
28 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
|
29 ## Description: Compute autocovariances |
3426
|
30 |
3191
|
31 function retval = autocov (X, h) |
3426
|
32 |
3238
|
33 [n, c] = size (X); |
3426
|
34 |
3191
|
35 if (is_vector (X)) |
|
36 n = length (X); |
|
37 c = 1; |
|
38 X = reshape (X, n, 1); |
|
39 endif |
3426
|
40 |
3191
|
41 X = center (X); |
3426
|
42 |
3191
|
43 if (nargin == 1) |
|
44 h = n - 1; |
|
45 endif |
3426
|
46 |
3191
|
47 retval = zeros (h + 1, c); |
3426
|
48 |
3418
|
49 for i = 0 : h |
|
50 retval(i+1, :) = diag (X(i+1:n, :).' * conj (X(1:n-i, :))) / n; |
|
51 endfor |
3426
|
52 |
3191
|
53 endfunction |