Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / histogram / get2d.c
1 /* histogram/get2d.c
2  * 
3  * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #include <config.h>
21 #include <gsl/gsl_errno.h>
22 #include <gsl/gsl_histogram2d.h>
23
24 #include "find.c"
25
26 double
27 gsl_histogram2d_get (const gsl_histogram2d * h, const size_t i, const size_t j)
28 {
29   const size_t nx = h->nx;
30   const size_t ny = h->ny;
31
32   if (i >= nx)
33     {
34       GSL_ERROR_VAL ("index i lies outside valid range of 0 .. nx - 1",
35                         GSL_EDOM, 0);
36     }
37
38   if (j >= ny)
39     {
40       GSL_ERROR_VAL ("index j lies outside valid range of 0 .. ny - 1",
41                         GSL_EDOM, 0);
42     }
43
44   return h->bin[i * ny + j];
45 }
46
47 int
48 gsl_histogram2d_get_xrange (const gsl_histogram2d * h, const size_t i,
49                             double *xlower, double *xupper)
50 {
51   const size_t nx = h->nx;
52
53   if (i >= nx)
54     {
55       GSL_ERROR ("index i lies outside valid range of 0 .. nx - 1", GSL_EDOM);
56     }
57
58   *xlower = h->xrange[i];
59   *xupper = h->xrange[i + 1];
60
61   return GSL_SUCCESS;
62 }
63
64 int
65 gsl_histogram2d_get_yrange (const gsl_histogram2d * h, const size_t j,
66                             double *ylower, double *yupper)
67 {
68   const size_t ny = h->ny;
69
70   if (j >= ny)
71     {
72       GSL_ERROR ("index j lies outside valid range of 0 .. ny - 1", GSL_EDOM);
73     }
74
75   *ylower = h->yrange[j];
76   *yupper = h->yrange[j + 1];
77
78   return GSL_SUCCESS;
79 }
80
81 int
82 gsl_histogram2d_find (const gsl_histogram2d * h,
83                       const double x, const double y,
84                       size_t * i, size_t * j)
85 {
86   int status = find (h->nx, h->xrange, x, i);
87
88   if (status)
89     {
90       GSL_ERROR ("x not found in range of h", GSL_EDOM);
91     }
92
93   status = find (h->ny, h->yrange, y, j);
94
95   if (status)
96     {
97       GSL_ERROR ("y not found in range of h", GSL_EDOM);
98     }
99
100   return GSL_SUCCESS;
101 }