X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fts%2Finnovations.h;h=7693690ce58e072e91305619b15508c7e001a644;hb=81579d9e9f994fb2908f50af41c3eb033d216e58;hp=94289eaaab234de0959c07e26d13a63545c58cca;hpb=29e712969d0d5bc1ee20458309dee7df2c38f1ae;p=pspp-builds.git diff --git a/src/math/ts/innovations.h b/src/math/ts/innovations.h index 94289eaa..7693690c 100644 --- a/src/math/ts/innovations.h +++ b/src/math/ts/innovations.h @@ -1,22 +1,18 @@ -/* - src/math/time-series/arma/innovations.h - - Copyright (C) 2006 Free Software Foundation, Inc. Written by Jason H. Stover. - - This program is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free - Software Foundation; either version 2 of the License, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - more details. - - You should have received a copy of the GNU General Public License along with - this program; if not, write to the Free Software Foundation, Inc., 51 - Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA. - */ +/* PSPP - a program for statistical analysis. + Copyright (C) 2006, 2011 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* Find preliminary ARMA coefficients via the innovations algorithm. Also compute the sample mean and covariance matrix for each series. @@ -29,17 +25,20 @@ */ #ifndef INNOVATIONS_H #define INNOVATIONS_H -#include + +#include "math/coefficient.h" +#include "math/design-matrix.h" + 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 struct variable **, size_t *, - size_t, const struct casefile *); +struct innovations_estimate ** pspp_innovations (const struct design_matrix *, size_t); +void pspp_innovations_free (struct innovations_estimate **, size_t); #endif