gsl_vector__vector_source.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* vector/vector_source.c
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, 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. #ifndef HIDE_INLINE_STATIC
  20. BASE
  21. FUNCTION (gsl_vector, get) (const TYPE (gsl_vector) * v, const size_t i)
  22. {
  23. if (gsl_check_range)
  24. {
  25. if (i >= v->size) /* size_t is unsigned, can't be negative */
  26. {
  27. BASE zero = ZERO;
  28. GSL_ERROR_VAL ("index out of range", GSL_EINVAL, zero);
  29. }
  30. }
  31. /* The following line is a generalization of return v->data[i] */
  32. return *(BASE *) (v->data + MULTIPLICITY * i * v->stride);
  33. }
  34. void
  35. FUNCTION (gsl_vector, set) (TYPE (gsl_vector) * v, const size_t i, BASE x)
  36. {
  37. if (gsl_check_range)
  38. {
  39. if (i >= v->size) /* size_t is unsigned, can't be negative */
  40. {
  41. GSL_ERROR_VOID ("index out of range", GSL_EINVAL);
  42. }
  43. }
  44. /* The following line is a generalization of v->data[i] = x */
  45. *(BASE *) (v->data + MULTIPLICITY * i * v->stride) = x;
  46. }
  47. BASE *
  48. FUNCTION (gsl_vector, ptr) (TYPE (gsl_vector) * v, const size_t i)
  49. {
  50. if (gsl_check_range)
  51. {
  52. if (i >= v->size) /* size_t is unsigned, can't be negative */
  53. {
  54. GSL_ERROR_NULL ("index out of range", GSL_EINVAL);
  55. }
  56. }
  57. return (BASE *) (v->data + MULTIPLICITY * i * v->stride);
  58. }
  59. const BASE *
  60. FUNCTION (gsl_vector, const_ptr) (const TYPE (gsl_vector) * v, const size_t i)
  61. {
  62. if (gsl_check_range)
  63. {
  64. if (i >= v->size) /* size_t is unsigned, can't be negative */
  65. {
  66. GSL_ERROR_NULL ("index out of range", GSL_EINVAL);
  67. }
  68. }
  69. /* The following line is a generalization of return v->data[i] */
  70. return (const BASE *) (v->data + MULTIPLICITY * i * v->stride);
  71. }
  72. #endif