7017
|
1 ## Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2005, 2006, |
|
2 ## 2007 Kurt Hornik |
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} {} autoreg_matrix (@var{y}, @var{k}) |
|
22 ## Given a time series (vector) @var{y}, return a matrix with ones in the |
|
23 ## first column and the first @var{k} lagged values of @var{y} in the |
|
24 ## other columns. I.e., for @var{t} > @var{k}, @code{[1, |
6547
|
25 ## @var{y}(@var{t}-1), @dots{}, @var{y}(@var{t}-@var{k})]} is the t-th row |
3449
|
26 ## of the result. The resulting matrix may be used as a regressor matrix |
|
27 ## in autoregressions. |
|
28 ## @end deftypefn |
3426
|
29 |
5428
|
30 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
3457
|
31 ## Description: Design matrix for autoregressions |
3191
|
32 |
|
33 function X = autoreg_matrix (y, k) |
|
34 |
|
35 if (nargin != 2) |
6046
|
36 print_usage (); |
3191
|
37 endif |
3426
|
38 |
4030
|
39 if (! (isvector (y))) |
3457
|
40 error ("autoreg_matrix: y must be a vector"); |
3191
|
41 endif |
3426
|
42 |
3191
|
43 T = length (y); |
|
44 y = reshape (y, T, 1); |
|
45 X = ones (T, k+1); |
|
46 for j = 1 : k; |
3273
|
47 X(:, j+1) = [(zeros (j, 1)); y(1:T-j)]; |
3191
|
48 endfor |
3426
|
49 |
3191
|
50 endfunction |