X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Ftrimmed-mean.c;h=4840fd2d66e0375a6114e3585fc5795b9acf60d7;hb=922dfe227e0a157f895c025b8f8590e2bfc59f23;hp=2d44d0dc08cc3bba114f4ed9004c17eaf9ae6a7f;hpb=97f2fd8ca9f4a977ed055e145eb722a52e0e6cc7;p=pspp diff --git a/src/math/trimmed-mean.c b/src/math/trimmed-mean.c index 2d44d0dc08..4840fd2d66 100644 --- a/src/math/trimmed-mean.c +++ b/src/math/trimmed-mean.c @@ -33,31 +33,29 @@ acc (struct statistic *s, const struct ccase *cx UNUSED, double c, double cc, do struct trimmed_mean *tm = UP_CAST (s, struct trimmed_mean, parent.parent); struct order_stats *os = &tm->parent; - if ( cc > os->k[0].tc && cc < os->k[1].tc) - tm->sum += c * y; + if (cc > os->k[0].tc && cc <= os->k[1].tc) + tm->sum += c * y; - if ( tm->cyk1p1 == SYSMIS && cc >os->k[0].tc) - tm->cyk1p1 = c * y; + if (tm->cyk1p1 == SYSMIS && cc > os->k[0].tc) + tm->cyk1p1 = c * y; } static void destroy (struct statistic *s) { struct trimmed_mean *tm = UP_CAST (s, struct trimmed_mean, parent.parent); - struct order_stats *os = &tm->parent; - free (os->k); free (tm); } struct trimmed_mean * trimmed_mean_create (double W, double tail) { - struct trimmed_mean *tm = xzalloc (sizeof (*tm)); + struct trimmed_mean *tm = XZALLOC (struct trimmed_mean); struct order_stats *os = &tm->parent; struct statistic *stat = &os->parent; os->n_k = 2; - os->k = xcalloc (2, sizeof (*os->k)); + os->k = tm->k; assert (tail >= 0); assert (tail <= 1); @@ -83,14 +81,11 @@ trimmed_mean_calculate (const struct trimmed_mean *tm) return ( - (os->k[0].cc_p1 - os->k[0].tc) * os->k[0].y_p1 - - - (os->k[1].cc - os->k[1].tc) * os->k[1].y_p1 + (os->k[0].cc - os->k[0].tc) * os->k[0].y_p1 + + + (tm->w - os->k[1].cc - os->k[0].tc) * os->k[1].y_p1 + - tm->sum - - - tm->cyk1p1 - ) - / - ( (1.0 - 2 * tm->tail) * tm->w); + tm->sum +) + / ((1.0 - tm->tail * 2) * tm->w); }