X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Flinreg%2Fpredict.c;h=8e628a4dba27b475bc4c63eee2153e1383d3699b;hb=2da08e801be698df268f35ac6e21cc8a345ba1fb;hp=ca96ab097e198d248e6aacf5a2208fd1ac808c3c;hpb=945fd370f9fb880b310fb88f868ad47c2ae84533;p=pspp-builds.git diff --git a/src/math/linreg/predict.c b/src/math/linreg/predict.c index ca96ab09..8e628a4d 100644 --- a/src/math/linreg/predict.c +++ b/src/math/linreg/predict.c @@ -1,23 +1,20 @@ -/* - lib/linreg/predict.c - - Copyright (C) 2005 Free Software Foundation, Inc. Written by Jason H. Stover. +/* PSPP - a program for statistical analysis. + Copyright (C) 2005 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 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. - */ + 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 . */ +#include #include #include #include @@ -70,7 +67,7 @@ pspp_linreg_predict (const struct variable **predictors, { found[i] = coe; tmp = pspp_coeff_get_est (coe); - if (predictors[j]->type == NUMERIC) + if (var_is_numeric (predictors[j])) { tmp *= vals[j]->f; }