X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fnp.c;h=0d691c2aa7b6699a82cd174bedb77984e43a2ae0;hb=8f7af0acaf8a9253242d89fcdb26e285841f7833;hp=e61bf58e117aaf915d596bc26b8875152f0f0deb;hpb=bd17d2af982332ee1791998361b1ac6731fe14fa;p=pspp diff --git a/src/math/np.c b/src/math/np.c index e61bf58e11..0d691c2aa7 100644 --- a/src/math/np.c +++ b/src/math/np.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2008, 2009 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,25 +15,27 @@ along with this program. If not, see . */ #include -#include "np.h" + +#include "math/np.h" #include #include #include -#include -#include -#include -#include -#include +#include "data/case.h" +#include "data/casewriter.h" +#include "libpspp/cast.h" +#include "libpspp/compiler.h" +#include "libpspp/misc.h" +#include "math/moments.h" -#include "xalloc.h" +#include "gl/xalloc.h" static void destroy (struct statistic *stat) { - struct order_stats *os = (struct order_stats *) stat; - free (os); + struct np *np = UP_CAST (stat, struct np, parent.parent); + free (np); } @@ -42,10 +44,10 @@ acc (struct statistic *s, const struct ccase *cx UNUSED, double c, double cc, double y) { struct ccase *cp; - struct np *np = (struct np *) s; + struct np *np = UP_CAST (s, struct np, parent.parent); double rank = np->prev_cc + (c + 1) / 2.0; - double ns = gsl_cdf_ugaussian_Pinv (rank / ( np->n + 1 )); + double ns = gsl_cdf_ugaussian_Pinv (rank / (np->n + 1)); double z = (y - np->mean) / np->stddev; @@ -61,29 +63,29 @@ acc (struct statistic *s, const struct ccase *cx UNUSED, minimize (&np->y_min, y); cp = case_create (casewriter_get_proto (np->writer)); - case_data_rw_idx (cp, NP_IDX_Y)->f = y; - case_data_rw_idx (cp, NP_IDX_NS)->f = ns; - case_data_rw_idx (cp, NP_IDX_DNS)->f = dns; + *case_num_rw_idx (cp, NP_IDX_Y) = y; + *case_num_rw_idx (cp, NP_IDX_NS) = ns; + *case_num_rw_idx (cp, NP_IDX_DNS) = dns; casewriter_write (np->writer, cp); np->prev_cc = cc; } -struct order_stats * -np_create (const struct moments1 *m) +struct np * +np_create (double n, double mean, double var) { - double variance; - struct np *np = xzalloc (sizeof (*np)); - struct statistic *stat = (struct statistic *) np; - struct order_stats *os = (struct order_stats *) np; + struct np *np = XZALLOC (struct np); + struct order_stats *os = &np->parent; + struct statistic *stat = &os->parent; struct caseproto *proto; int i; np->prev_cc = 0; - moments1_calculate (m, &np->n, &np->mean, &variance, NULL, NULL); + np->n = n; + np->mean = mean; - np->stddev = sqrt (variance); + np->stddev = sqrt (var); np->y_min = np->ns_min = np->dns_min = DBL_MAX; np->y_max = np->ns_max = np->dns_max = -DBL_MAX; @@ -98,5 +100,5 @@ np_create (const struct moments1 *m) stat->destroy = destroy; stat->accumulate = acc; - return os; + return np; }