X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Ftrimmed-mean.c;h=5e48689626817ddf59ad46363a17e1d0e763084d;hb=81579d9e9f994fb2908f50af41c3eb033d216e58;hp=fa205017bca35a046f01c2156a0e7fe9b3dabc89;hpb=bb611ecc6f1c33a0a7c691785927c545d18696f6;p=pspp-builds.git diff --git a/src/math/trimmed-mean.c b/src/math/trimmed-mean.c index fa205017..5e486896 100644 --- a/src/math/trimmed-mean.c +++ b/src/math/trimmed-mean.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2008 Free Software Foundation, Inc. + Copyright (C) 2008, 2009, 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 @@ -15,20 +15,23 @@ along with this program. If not, see . */ #include -#include "trimmed-mean.h" -#include -#include -#include +#include "math/trimmed-mean.h" + #include -#include +#include "data/val-type.h" +#include "libpspp/assertion.h" +#include "libpspp/cast.h" +#include "math/order-stats.h" + +#include "gl/xalloc.h" static void acc (struct statistic *s, const struct ccase *cx UNUSED, double c, double cc, double y) { - struct trimmed_mean *tm = (struct trimmed_mean *) s; - struct order_stats *os = (struct order_stats *) s; + 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; @@ -40,17 +43,18 @@ acc (struct statistic *s, const struct ccase *cx UNUSED, double c, double cc, do static void destroy (struct statistic *s) { - struct order_stats *os = (struct order_stats *) s; + struct trimmed_mean *tm = UP_CAST (s, struct trimmed_mean, parent.parent); + struct order_stats *os = &tm->parent; free (os->k); - free (s); + free (tm); } -struct statistic * +struct trimmed_mean * trimmed_mean_create (double W, double tail) { struct trimmed_mean *tm = xzalloc (sizeof (*tm)); - struct order_stats *os = (struct order_stats *) tm; - struct statistic *stat = (struct statistic *) tm; + struct order_stats *os = &tm->parent; + struct statistic *stat = &os->parent; os->n_k = 2; os->k = xcalloc (sizeof (*os->k), 2); @@ -68,7 +72,7 @@ trimmed_mean_create (double W, double tail) tm->w = W; tm->tail = tail; - return stat; + return tm; } @@ -77,6 +81,8 @@ trimmed_mean_calculate (const struct trimmed_mean *tm) { const struct order_stats *os = (const struct order_stats *) tm; + assert (os->cc == tm->w); + return ( (os->k[0].cc_p1 - os->k[0].tc) * os->k[0].y_p1