Update all #include directives to the currently preferred style.
[pspp-builds.git] / src / output / charts / plot-hist.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2004, 2009, 2011 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
18 #include <config.h>
19
20 #include <stdio.h>
21 #include <math.h>
22 #include <gsl/gsl_randist.h>
23 #include <assert.h>
24
25 #include "libpspp/cast.h"
26 #include "math/histogram.h"
27 #include "math/moments.h"
28 #include "output/chart-item-provider.h"
29 #include "output/charts/plot-hist.h"
30
31 #include "gettext.h"
32 #define _(msgid) gettext (msgid)
33
34 /* Plots a histogram of the data in HIST with the given LABEL.
35    Labels the histogram with each of N, MEAN, and STDDEV that is
36    not SYSMIS.  If all three are not SYSMIS and SHOW_NORMAL is
37    true, also draws a normal curve on the histogram. */
38 struct chart_item *
39 histogram_chart_create (const gsl_histogram *hist, const char *label,
40                         double n, double mean, double stddev,
41                         bool show_normal)
42 {
43   struct histogram_chart *h;
44
45   h = xmalloc (sizeof *h);
46   chart_item_init (&h->chart_item, &histogram_chart_class, label);
47   h->gsl_hist = hist != NULL ? gsl_histogram_clone (hist) : NULL;
48   h->n = n;
49   h->mean = mean;
50   h->stddev = stddev;
51   h->show_normal = show_normal;
52   return &h->chart_item;
53 }
54
55 static void
56 histogram_chart_destroy (struct chart_item *chart_item)
57 {
58   struct histogram_chart *h = UP_CAST (chart_item, struct histogram_chart,
59                                        chart_item);
60   if (h->gsl_hist != NULL)
61     gsl_histogram_free (h->gsl_hist);
62   free (h);
63 }
64
65 const struct chart_item_class histogram_chart_class =
66   {
67     histogram_chart_destroy
68   };