X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fts%2Finnovations.h;h=3432a3be1eaad2641b9c3bd50f1d00bbd577422e;hb=732b6a86124e89e24d685ed785d2df55728eb01b;hp=5cc6b16cef680961e3cfadd3e80a65668dfc9c88;hpb=597402f4808b749094b3f90a96d96adf67e41c5b;p=pspp-builds.git diff --git a/src/math/ts/innovations.h b/src/math/ts/innovations.h index 5cc6b16c..3432a3be 100644 --- a/src/math/ts/innovations.h +++ b/src/math/ts/innovations.h @@ -1,5 +1,5 @@ /* - src/math/time-series/arma/innovations.h + src/math/ts/innovations.h Copyright (C) 2006 Free Software Foundation, Inc. Written by Jason H. Stover. @@ -30,14 +30,18 @@ #ifndef INNOVATIONS_H #define INNOVATIONS_H #include +#include + struct innovations_estimate { - struct variable *variable; + const struct variable *variable; double mean; - double variance; double *cov; + double *scale; double n_obs; double max_lag; - coefficient *coeff; + coefficient **coeff; }; +struct innovations_estimate ** pspp_innovations (const struct design_matrix *, size_t); +void pspp_innovations_free (struct innovations_estimate **, size_t); #endif