gsl_matrix__submatrix_source.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* matrix/submatrix_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_matrix,view)
  20. FUNCTION (gsl_matrix, submatrix) (QUALIFIED_TYPE(gsl_matrix) * m,
  21. const size_t i, const size_t j,
  22. const size_t n1, const size_t n2)
  23. {
  24. QUALIFIED_VIEW(_gsl_matrix,view) view = NULL_MATRIX_VIEW;
  25. if (i >= m->size1)
  26. {
  27. GSL_ERROR_VAL ("row index is out of range", GSL_EINVAL, view);
  28. }
  29. else if (j >= m->size2)
  30. {
  31. GSL_ERROR_VAL ("column index is out of range", GSL_EINVAL, view);
  32. }
  33. else if (n1 == 0)
  34. {
  35. GSL_ERROR_VAL ("first dimension must be non-zero", GSL_EINVAL, view);
  36. }
  37. else if (n2 == 0)
  38. {
  39. GSL_ERROR_VAL ("second dimension must be non-zero", GSL_EINVAL, view);
  40. }
  41. else if (i + n1 > m->size1)
  42. {
  43. GSL_ERROR_VAL ("first dimension overflows matrix", GSL_EINVAL, view);
  44. }
  45. else if (j + n2 > m->size2)
  46. {
  47. GSL_ERROR_VAL ("second dimension overflows matrix", GSL_EINVAL, view);
  48. }
  49. {
  50. TYPE(gsl_matrix) s = NULL_MATRIX;
  51. s.data = m->data + MULTIPLICITY * (i * m->tda + j);
  52. s.size1 = n1;
  53. s.size2 = n2;
  54. s.tda = m->tda;
  55. s.block = m->block;
  56. s.owner = 0;
  57. view.matrix = s;
  58. return view;
  59. }
  60. }