gsl_histogram__get2d.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. #include "gsl__config.h"
  20. #include "gsl_errno.h"
  21. #include "gsl_histogram2d.h"
  22. #include "gsl_histogram__find.c"
  23. double
  24. gsl_histogram2d_get (const gsl_histogram2d * h, const size_t i, const size_t j)
  25. {
  26. const size_t nx = h->nx;
  27. const size_t ny = h->ny;
  28. if (i >= nx)
  29. {
  30. GSL_ERROR_VAL ("index i lies outside valid range of 0 .. nx - 1",
  31. GSL_EDOM, 0);
  32. }
  33. if (j >= ny)
  34. {
  35. GSL_ERROR_VAL ("index j lies outside valid range of 0 .. ny - 1",
  36. GSL_EDOM, 0);
  37. }
  38. return h->bin[i * ny + j];
  39. }
  40. int
  41. gsl_histogram2d_get_xrange (const gsl_histogram2d * h, const size_t i,
  42. double *xlower, double *xupper)
  43. {
  44. const size_t nx = h->nx;
  45. if (i >= nx)
  46. {
  47. GSL_ERROR ("index i lies outside valid range of 0 .. nx - 1", GSL_EDOM);
  48. }
  49. *xlower = h->xrange[i];
  50. *xupper = h->xrange[i + 1];
  51. return GSL_SUCCESS;
  52. }
  53. int
  54. gsl_histogram2d_get_yrange (const gsl_histogram2d * h, const size_t j,
  55. double *ylower, double *yupper)
  56. {
  57. const size_t ny = h->ny;
  58. if (j >= ny)
  59. {
  60. GSL_ERROR ("index j lies outside valid range of 0 .. ny - 1", GSL_EDOM);
  61. }
  62. *ylower = h->yrange[j];
  63. *yupper = h->yrange[j + 1];
  64. return GSL_SUCCESS;
  65. }
  66. int
  67. gsl_histogram2d_find (const gsl_histogram2d * h,
  68. const double x, const double y,
  69. size_t * i, size_t * j)
  70. {
  71. int status = find (h->nx, h->xrange, x, i);
  72. if (status)
  73. {
  74. GSL_ERROR ("x not found in range of h", GSL_EDOM);
  75. }
  76. status = find (h->ny, h->yrange, y, j);
  77. if (status)
  78. {
  79. GSL_ERROR ("y not found in range of h", GSL_EDOM);
  80. }
  81. return GSL_SUCCESS;
  82. }