X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fhistogram.c;h=67079398d169ec58737c6f3b94a7d243b9fc8516;hb=2acfe799af1fd4504ee1278e0b8864ace451688a;hp=7b875d4089ad211d39a636f34fa8e8108a2098de;hpb=dca2f6d80dcb53dd1a12c675118d4b7e0716b292;p=pspp-builds.git diff --git a/src/math/histogram.c b/src/math/histogram.c index 7b875d40..67079398 100644 --- a/src/math/histogram.c +++ b/src/math/histogram.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2008 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,36 +15,69 @@ along with this program. If not, see . */ #include -#include -#include -#include #include "histogram.h" + +#include +#include + +#include #include "chart-geometry.h" +#include + + +void +histogram_add (struct histogram *h, double y, double c) +{ + ((struct statistic *)h)->accumulate ((struct statistic *) h, NULL, c, 0, y); +} + -gsl_histogram * -histogram_create(double bins, double x_min, double x_max) +static void +acc (struct statistic *s, const struct ccase *cx UNUSED, double c, double cc UNUSED, double y) { - int n; - double bin_width ; - double bin_width_2 ; + struct histogram *hist = (struct histogram *) s; + + gsl_histogram_accumulate (hist->gsl_hist, y, c); +} + + +static void +destroy (struct statistic *s) +{ + struct histogram *h = (struct histogram *) s; + gsl_histogram_free (h->gsl_hist); + free (s); +} + + +struct statistic * +histogram_create (int bins, double min, double max) +{ + struct histogram *h = xmalloc (sizeof *h); + struct statistic *stat = (struct statistic *) h; double upper_limit, lower_limit; - gsl_histogram *hist = gsl_histogram_alloc(bins); + double bin_width = chart_rounded_tick ((max - min) / (double) bins); + double bin_width_2 = bin_width / 2.0; - bin_width = chart_rounded_tick((x_max - x_min)/ bins); - bin_width_2 = bin_width / 2.0; + int n = ceil (max / (bin_width_2) ) ; + + assert (max > min); - n = ceil( x_max / (bin_width_2) ) ; if ( ! (n % 2 ) ) n++; upper_limit = n * bin_width_2; - n = floor( x_min / (bin_width_2) ) ; + n = floor (min / (bin_width_2) ) ; if ( ! (n % 2 ) ) n--; lower_limit = n * bin_width_2; - gsl_histogram_set_ranges_uniform(hist, lower_limit, upper_limit); + h->gsl_hist = gsl_histogram_alloc (bins); + gsl_histogram_set_ranges_uniform (h->gsl_hist, lower_limit, upper_limit); + + stat->accumulate = acc; + stat->destroy = destroy; - return hist; + return stat; }