Eliminate casts that can be replaced by uses of the & operator.
[pspp-builds.git] / src / math / histogram.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2004, 2008, 2009 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18 #include "histogram.h"
19
20 #include <gl/xalloc.h>
21 #include <libpspp/assertion.h>
22
23 #include <gsl/gsl_histogram.h>
24 #include "chart-geometry.h"
25 #include <math.h>
26
27
28 void
29 histogram_add (struct histogram *h, double y, double c)
30 {
31   struct statistic *stat = &h->parent;
32   stat->accumulate (stat, NULL, c, 0, y);
33 }
34
35
36
37 static void
38 acc (struct statistic *s, const struct ccase *cx UNUSED, double c, double cc UNUSED, double y)
39 {
40   struct histogram *hist = (struct histogram *) s;
41
42   gsl_histogram_accumulate (hist->gsl_hist, y, c);
43 }
44
45
46 static void
47 destroy (struct statistic *s)
48 {
49   struct histogram *h = (struct histogram *) s;
50   gsl_histogram_free (h->gsl_hist);
51   free (s);
52 }
53
54
55 struct histogram *
56 histogram_create (int bins, double min, double max)
57 {
58   struct histogram *h = xmalloc (sizeof *h);
59   struct statistic *stat = &h->parent;
60   double upper_limit, lower_limit;
61
62   double bin_width = chart_rounded_tick ((max - min) / (double) bins);
63   double bin_width_2 = bin_width / 2.0;
64
65   int n =  ceil (max / (bin_width_2) ) ;
66
67   assert (max > min);
68
69   if ( ! (n % 2 ) ) n++;
70   upper_limit = n * bin_width_2;
71
72   n =  floor (min / (bin_width_2) ) ;
73   if ( ! (n % 2 ) ) n--;
74   lower_limit = n * bin_width_2;
75
76   h->gsl_hist = gsl_histogram_alloc (bins);
77   gsl_histogram_set_ranges_uniform (h->gsl_hist, lower_limit, upper_limit);
78
79   stat->accumulate = acc;
80   stat->destroy = destroy;
81
82   return h;
83 }
84