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} {[@var{a}, @var{v}] =} yulewalker (@var{c}) |
|
22 ## Fit an AR (p)-model with Yule-Walker estimates given a vector @var{c} |
|
23 ## of autocovariances @code{[gamma_0, ..., gamma_p]}. |
3426
|
24 ## |
3449
|
25 ## Returns the AR coefficients, @var{a}, and the variance of white |
|
26 ## noise, @var{v}. |
|
27 ## @end deftypefn |
3426
|
28 |
3457
|
29 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
|
30 ## Description: Fit AR model by Yule-Walker method |
3426
|
31 |
3191
|
32 function [a, v] = yulewalker (c) |
3426
|
33 |
3191
|
34 p = length (c) - 1; |
3426
|
35 |
3191
|
36 if (columns (c) > 1) |
|
37 c = c'; |
|
38 endif |
3426
|
39 |
3191
|
40 cp = c(2 : p+1); |
|
41 CP = zeros(p, p); |
3426
|
42 |
3191
|
43 for i = 1:p |
|
44 for j = 1:p |
|
45 CP (i, j) = c (abs (i-j) + 1); |
|
46 endfor |
|
47 endfor |
3426
|
48 |
3191
|
49 a = inv (CP) * cp; |
|
50 v = c(1) - a' * cp; |
3426
|
51 |
3191
|
52 endfunction |
|
53 |
|
54 |
3426
|
55 |
|
56 |
|
57 |