fixed mistakes
[pspp-builds.git] / src / math / ts / innovations.h
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