gsl_fft__real_pass_2.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* fft/real_pass_2.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. static void
  20. FUNCTION(fft_real,pass_2) (const BASE in[],
  21. const size_t istride,
  22. BASE out[],
  23. const size_t ostride,
  24. const size_t product,
  25. const size_t n,
  26. const TYPE(gsl_complex) twiddle[])
  27. {
  28. size_t k, k1;
  29. const size_t factor = 2;
  30. const size_t m = n / factor;
  31. const size_t q = n / product;
  32. const size_t product_1 = product / factor;
  33. for (k1 = 0; k1 < q; k1++)
  34. {
  35. const size_t from0 = k1 * product_1;
  36. const size_t from1 = from0 + m;
  37. const ATOMIC r0 = VECTOR(in,istride,from0);
  38. const ATOMIC r1 = VECTOR(in,istride,from1);
  39. const ATOMIC s0 = r0 + r1;
  40. const ATOMIC s1 = r0 - r1;
  41. const size_t to0 = product * k1;
  42. const size_t to1 = to0 + product - 1;
  43. VECTOR(out,ostride,to0) = s0;
  44. VECTOR(out,ostride,to1) = s1;
  45. }
  46. if (product_1 == 1)
  47. return;
  48. for (k = 1; k < (product_1 + 1) / 2; k++)
  49. {
  50. /* forward real transform: w -> conjugate(w) */
  51. const ATOMIC w_real = GSL_REAL(twiddle[k - 1]);
  52. const ATOMIC w_imag = -GSL_IMAG(twiddle[k - 1]);
  53. for (k1 = 0; k1 < q; k1++)
  54. {
  55. const size_t from0 = k1 * product_1 + 2 * k - 1;
  56. const size_t from1 = from0 + m;
  57. const ATOMIC f0_real = VECTOR(in,istride,from0);
  58. const ATOMIC f0_imag = VECTOR(in,istride,from0 + 1);
  59. const ATOMIC f1_real = VECTOR(in,istride,from1);
  60. const ATOMIC f1_imag = VECTOR(in,istride,from1 + 1);
  61. const ATOMIC z0_real = f0_real;
  62. const ATOMIC z0_imag = f0_imag;
  63. const ATOMIC z1_real = w_real * f1_real - w_imag * f1_imag;
  64. const ATOMIC z1_imag = w_real * f1_imag + w_imag * f1_real;
  65. /* compute x = W(2) z */
  66. /* x0 = z0 + z1 */
  67. const ATOMIC x0_real = z0_real + z1_real;
  68. const ATOMIC x0_imag = z0_imag + z1_imag;
  69. /* x1 = z0 - z1 */
  70. const ATOMIC x1_real = z0_real - z1_real;
  71. const ATOMIC x1_imag = z0_imag - z1_imag;
  72. const size_t to0 = k1 * product + 2 * k - 1;
  73. const size_t to1 = k1 * product + product - 2 * k - 1;
  74. VECTOR(out,ostride,to0) = x0_real;
  75. VECTOR(out,ostride,to0 + 1) = x0_imag;
  76. /* stored in conjugate location */
  77. VECTOR(out,ostride,to1) = x1_real;
  78. VECTOR(out,ostride,to1 + 1) = -x1_imag;
  79. }
  80. }
  81. if (product_1 % 2 == 1)
  82. return;
  83. for (k1 = 0; k1 < q; k1++)
  84. {
  85. const size_t from0 = k1 * product_1 + product_1 - 1;
  86. const size_t from1 = from0 + m;
  87. const size_t to0 = k1 * product + product_1 - 1;
  88. VECTOR(out,ostride,to0) = VECTOR(in,istride,from0);
  89. VECTOR(out,ostride,to0 + 1) = -VECTOR(in,istride,from1);
  90. }
  91. return;
  92. }