X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fmath%2Fts%2Finnovations.h;h=3432a3be1eaad2641b9c3bd50f1d00bbd577422e;hb=f641982c71972cbf57eb9469d14af8629bf79d7b;hp=a020f876c5c95171c10a7e531feddc0e0c5c977e;hpb=4dc2ebcfd1a113b25f6997ff3b66fa52ac41158b;p=pspp diff --git a/src/math/ts/innovations.h b/src/math/ts/innovations.h index a020f876c5..3432a3be1e 100644 --- a/src/math/ts/innovations.h +++ b/src/math/ts/innovations.h @@ -30,16 +30,18 @@ #ifndef INNOVATIONS_H #define INNOVATIONS_H #include +#include + struct innovations_estimate { const struct variable *variable; double mean; - double variance; double *cov; double *scale; double n_obs; double max_lag; coefficient **coeff; }; -struct innovations_estimate ** pspp_innovations (const gsl_matrix *, size_t); +struct innovations_estimate ** pspp_innovations (const struct design_matrix *, size_t); +void pspp_innovations_free (struct innovations_estimate **, size_t); #endif