gsl_cblas__source_rotm.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* blas/source_rotmg.h
  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. INDEX n;
  21. INDEX i = OFFSET(N, incX);
  22. INDEX j = OFFSET(N, incY);
  23. BASE h11, h21, h12, h22;
  24. if (P[0] == -1.0) {
  25. h11 = P[1];
  26. h21 = P[2];
  27. h12 = P[3];
  28. h22 = P[4];
  29. } else if (P[0] == 0.0) {
  30. h11 = 1.0;
  31. h21 = P[2];
  32. h12 = P[3];
  33. h22 = 1.0;
  34. } else if (P[0] == 1.0) {
  35. h11 = P[1];
  36. h21 = -1.0;
  37. h12 = 1.0;
  38. h22 = P[4];
  39. } else if (P[0] == -2.0) {
  40. return;
  41. } else {
  42. BLAS_ERROR("unrecognized value of P[0]");
  43. return;
  44. }
  45. for (n = 0; n < N; n++) {
  46. const BASE w = X[i];
  47. const BASE z = Y[j];
  48. X[i] = h11 * w + h12 * z;
  49. Y[j] = h21 * w + h22 * z;
  50. i += incX;
  51. j += incY;
  52. }
  53. }