center the data before computing the coefficients; remove variance member of innovati...
authorJason Stover <jhs@math.gcsu.edu>
Sun, 16 Jul 2006 12:49:13 +0000 (12:49 +0000)
committerJason Stover <jhs@math.gcsu.edu>
Sun, 16 Jul 2006 12:49:13 +0000 (12:49 +0000)
src/math/ts/ChangeLog
src/math/ts/innovations.c
src/math/ts/innovations.h

index 18948856e396b492310c850e1eb6712c75b24ff7..a353ffce1a5f3f51c635762fab5edb5e5fe79352 100644 (file)
@@ -2,6 +2,8 @@
 
        * innovations.c (get_coef): Fixed diagonal elements and call to
        innovations_convolve().
+       (subtract_mean): New function. Subtract the mean before computing
+       the coefficients.
 
 2006-07-15  Jason Stover  <jhs@math.gcsu.edu>
 
index 00d366cef7bbd9fe617209c949e9a655f1ff2407..107d8ba47897e2eafde521b1ec02e1d7bfc4ad8b 100644 (file)
@@ -239,9 +239,6 @@ get_coef (const gsl_matrix *data,
                          + est->coeff[m-1] * (X[m-2] - X_hat[m-2])
                          ...
                          + est->coeff[m-max_lag] * (X[m - max_lag] - X_hat[m - max_lag])
-
-           (That is what X_hat[m] SHOULD be, anyway. These routines need
-           to be tested.)
           */
          pspp_coeff_set_estimate (est[n]->coeff[i], theta[max_lag - 1][i]);
        }
@@ -281,7 +278,28 @@ innovations_struct_init (struct innovations_estimate *est,
     }
   est->max_lag = (double) lag;
 }
-      
+/*
+  The mean is subtracted from the original data before computing the
+  coefficients. The mean is NOT added back, so if you want to predict
+  a new value, you must add the mean to X_hat[m] to get the correct
+  value.
+ */
+static void
+subtract_mean (gsl_matrix *m, struct innovations_estimate **est)
+{      
+  size_t i;
+  size_t j;
+  double tmp;
+
+  for (i = 0; i < m->size1; i++)
+    {
+      for (j = 0; j < m->size2; j++)
+       {
+         tmp = gsl_matrix_get (m, i, j) - est[j]->mean;
+         gsl_matrix_set (m, i, j, tmp);
+       }
+    }
+}
 struct innovations_estimate ** 
 pspp_innovations (const struct design_matrix *dm, size_t lag)
 {
@@ -297,6 +315,7 @@ pspp_innovations (const struct design_matrix *dm, size_t lag)
     }
 
   get_mean (dm->m, est);
+  subtract_mean (dm->m, est);
   get_covariance (dm->m, est, lag);
   get_coef (dm->m, est, lag);
   
index d6ec1ce42c3e8e7dc533f7cc1be68b4d7719423b..3432a3be1eaad2641b9c3bd50f1d00bbd577422e 100644 (file)
@@ -36,7 +36,6 @@ struct innovations_estimate
 {
   const struct variable *variable;
   double mean;
-  double variance;
   double *cov;
   double *scale;
   double n_obs;