X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Flinreg%2Fpredict.c;h=911846870e2dea478093a9dc288acb89979d3627;hb=b5b474193e450bba97610065df0518c08074a7fb;hp=7f404fcf5e575ff212ae7520fc7370af71e17e41;hpb=9f650fc3d2946c216e6cd3c7922a8a63d0f97117;p=pspp-builds.git diff --git a/src/math/linreg/predict.c b/src/math/linreg/predict.c index 7f404fcf..91184687 100644 --- a/src/math/linreg/predict.c +++ b/src/math/linreg/predict.c @@ -1,28 +1,44 @@ -/* - 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 +/* + Is the coefficient COEF contained in the list of coefficients + COEF_LIST? + */ +static int +has_coefficient (const struct pspp_coeff **coef_list, const struct pspp_coeff *coef, + size_t n) +{ + size_t i = 0; + + while (i < n) + { + if (coef_list[i] == coef) + { + return 1; + } + i++; + } + return 0; +} /* Predict the value of the dependent variable with the new set of predictors. PREDICTORS must point to a list @@ -34,9 +50,9 @@ pspp_linreg_predict (const struct variable **predictors, const union value **vals, const void *c_, int n_vals) { const pspp_linreg_cache *c = c_; - int i; int j; - const struct pspp_coeff **found; + size_t next_coef = 0; + const struct pspp_coeff **coef_list; const struct pspp_coeff *coe; double result; double tmp; @@ -50,9 +66,8 @@ pspp_linreg_predict (const struct variable **predictors, /* The stupid model: just guess the mean. */ return c->depvar_mean; } - found = xnmalloc (c->n_coeffs, sizeof (*found)); - *found = c->coeff[0]; - result = c->coeff[0]->estimate; /* Intercept. */ + coef_list = xnmalloc (c->n_coeffs, sizeof (*coef_list)); + result = c->intercept; /* The loops guard against the possibility that the caller passed us @@ -62,23 +77,18 @@ pspp_linreg_predict (const struct variable **predictors, for (j = 0; j < n_vals; j++) { coe = pspp_linreg_get_coeff (c, predictors[j], vals[j]); - i = 1; - while (found[i] == coe && i < c->n_coeffs) - { - i++; - } - if (i < c->n_coeffs) + if (!has_coefficient (coef_list, coe, next_coef)) { - found[i] = coe; tmp = pspp_coeff_get_est (coe); if (var_is_numeric (predictors[j])) { tmp *= vals[j]->f; } result += tmp; + coef_list[next_coef++] = coe; } } - free (found); + free (coef_list); return result; }