gsl_vector__subvector_source.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* vector/subvector_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. QUALIFIED_VIEW(_gsl_vector, view)
  20. FUNCTION(gsl_vector, subvector) (QUALIFIED_TYPE(gsl_vector) * v, size_t offset, size_t n)
  21. {
  22. QUALIFIED_VIEW(_gsl_vector,view) view = NULL_VECTOR_VIEW;
  23. if (n == 0)
  24. {
  25. GSL_ERROR_VAL ("vector length n must be positive integer",
  26. GSL_EINVAL, view);
  27. }
  28. if (offset + (n - 1) >= v->size)
  29. {
  30. GSL_ERROR_VAL ("view would extend past end of vector",
  31. GSL_EINVAL, view);
  32. }
  33. {
  34. TYPE(gsl_vector) s = NULL_VECTOR;
  35. s.data = v->data + MULTIPLICITY * v->stride * offset ;
  36. s.size = n;
  37. s.stride = v->stride;
  38. s.block = v->block;
  39. s.owner = 0;
  40. view.vector = s;
  41. return view;
  42. }
  43. }
  44. QUALIFIED_VIEW(_gsl_vector, view)
  45. FUNCTION(gsl_vector, subvector_with_stride) (QUALIFIED_TYPE(gsl_vector) * v, size_t offset, size_t stride, size_t n)
  46. {
  47. QUALIFIED_VIEW(_gsl_vector,view) view = NULL_VECTOR_VIEW;
  48. if (n == 0)
  49. {
  50. GSL_ERROR_VAL ("vector length n must be positive integer",
  51. GSL_EINVAL, view);
  52. }
  53. if (stride == 0)
  54. {
  55. GSL_ERROR_VAL ("stride must be positive integer",
  56. GSL_EINVAL, view);
  57. }
  58. if (offset + (n - 1) * stride >= v->size)
  59. {
  60. GSL_ERROR_VAL ("view would extend past end of vector",
  61. GSL_EINVAL, view);
  62. }
  63. {
  64. TYPE(gsl_vector) s = NULL_VECTOR;
  65. s.data = v->data + MULTIPLICITY * v->stride * offset ;
  66. s.size = n;
  67. s.stride = v->stride * stride;
  68. s.block = v->block;
  69. s.owner = 0;
  70. view.vector = s;
  71. return view;
  72. }
  73. }