fixed mistakes
authorJason Stover <jhs@math.gcsu.edu>
Wed, 7 Jun 2006 22:32:30 +0000 (22:32 +0000)
committerJason Stover <jhs@math.gcsu.edu>
Wed, 7 Jun 2006 22:32:30 +0000 (22:32 +0000)
src/math/ts/innovations.c
src/math/ts/innovations.h

index 3b263bff248bcd499ee83cf159f9e230afa30c0e..43d86ec1677c8c9bb381f59b23109da8f09940f5 100644 (file)
@@ -88,10 +88,10 @@ innovations_init_cases (struct casereader *r, struct ccase **c, size_t max_lag)
   bool value = true;
   size_t lag = 0;
 
-  while (value)
+  while (value && lag < max_lag)
     {
       lag++;
-      value = casereader_read (r, c + lag);
+      value = casereader_read (r, c[lag]);
     }
   return value;
 }
@@ -109,27 +109,28 @@ innovations_update_cases (struct casereader *r, struct ccase **c, size_t max_lag
     {
       c[lag] = c[lag+1];
     }
-  value = casereader_read (r, c + lag);
+  value = casereader_read (r, c[lag]);
   return value;
 }
 static void
 get_covariance (size_t n_vars, const struct casefile *cf, 
-               struct innovations **est, size_t max_lag)
+               struct innovations_estimate **est, size_t max_lag)
 {
   struct casereader *r;
   struct ccase **c;
-  struct ccase *cur_case;
   size_t lag;
-  size_t n_vars;
+  size_t n;
   bool read_case = false;
   double d;
-  double tmp;
+  double x;
+  const union value *tmp;
+  const union value *tmp2;
 
   c = xnmalloc (max_lag, sizeof (*c));
   
   for (lag = 0; lag < max_lag; lag++)
     {
-      c[lag] = xmalloc (sizeof *c[i]);
+      c[lag] = xmalloc (sizeof *c[lag]);
     }
 
   r = casefile_get_reader (cf);
@@ -139,17 +140,17 @@ get_covariance (size_t n_vars, const struct casefile *cf,
     {
       for (n = 0; n < n_vars; n++)
        {
-         cur_case = case_data (c[0], est[n]->variable->fv);
-         if (!mv_is_value_missing (&est[n]->variable->miss, cur_case))
+         tmp2 = case_data (c[0], est[n]->variable->fv);
+         if (!mv_is_value_missing (&est[n]->variable->miss, tmp2))
            {
-             cur_case -= est[n]->mean;
+             x = tmp2->f - est[n]->mean;
              for (lag = 1; lag <= max_lag; lag++)
                {
                  tmp = case_data (c[lag], est[n]->variable->fv);
                  if (!mv_is_value_missing (&est[n]->variable->miss, tmp))
                    {
-                     d = (tmp - est[n]->mean);
-                     *(est[n]->cov + lag) += d * cur_case;
+                     d = (tmp->f - est[n]->mean);
+                     *(est[n]->cov + lag) += d * x;
                    }
                }
            }
@@ -174,8 +175,6 @@ struct innovations_estimate ** pspp_innovations (const struct variable **vars, s
                                                 size_t lag, const struct casefile *cf)
 {
   struct innovations_estimate **est;
-  struct casereader *r;
-  struct ccase *c;
   size_t i;
   size_t j;
 
@@ -192,7 +191,7 @@ struct innovations_estimate ** pspp_innovations (const struct variable **vars, s
          est[i]->coeff = xnmalloc (lag, sizeof (*est[i]->coeff));
          for (j = 0; j < lag; j++)
            {
-             est[i]->coeff + j = xmalloc (sizeof (*(est[i]->coeff + j)));
+             est[i]->coeff[j] = xmalloc (sizeof (*(est[i]->coeff + j)));
            }
        }
       else
@@ -208,4 +207,6 @@ struct innovations_estimate ** pspp_innovations (const struct variable **vars, s
    */
   get_mean_variance (*n_vars, cf, est);
   get_covariance (*n_vars, cf, est, lag);
+  
+  return est;
 }
index 5cc6b16cef680961e3cfadd3e80a65668dfc9c88..94289eaaab234de0959c07e26d13a63545c58cca 100644 (file)
 #include <math/coefficient.h>
 struct innovations_estimate
 {
-  struct variable *variable;
+  const struct variable *variable;
   double mean;
   double variance;
   double *cov;
   double n_obs;
   double max_lag;
-  coefficient *coeff;
+  coefficient **coeff;
 };
+struct innovations_estimate ** pspp_innovations (const struct variable **, size_t *,
+                                                size_t, const struct casefile *);
 #endif