gsl_fft__real_pass.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* fft/real_pass.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. static void FUNCTION(fft_real,pass_2) (const BASE in[],
  20. const size_t istride,
  21. BASE out[],
  22. const size_t ostride,
  23. const size_t product,
  24. const size_t n,
  25. const TYPE(gsl_complex) twiddle[]);
  26. static void FUNCTION(fft_real,pass_3) (const BASE in[],
  27. const size_t istride,
  28. BASE out[],
  29. const size_t ostride,
  30. const size_t product,
  31. const size_t n,
  32. const TYPE(gsl_complex) twiddle1[],
  33. const TYPE(gsl_complex) twiddle2[]);
  34. static void FUNCTION(fft_real,pass_4) (const BASE in[],
  35. const size_t istride,
  36. BASE out[],
  37. const size_t ostride,
  38. const size_t product,
  39. const size_t n,
  40. const TYPE(gsl_complex) twiddle1[],
  41. const TYPE(gsl_complex) twiddle2[],
  42. const TYPE(gsl_complex) twiddle3[]);
  43. static void FUNCTION(fft_real,pass_5) (const BASE in[],
  44. const size_t istride,
  45. BASE out[],
  46. const size_t ostride,
  47. const size_t product,
  48. const size_t n,
  49. const TYPE(gsl_complex) twiddle1[],
  50. const TYPE(gsl_complex) twiddle2[],
  51. const TYPE(gsl_complex) twiddle3[],
  52. const TYPE(gsl_complex) twiddle4[]);
  53. static void FUNCTION(fft_real,pass_n) (const BASE in[],
  54. const size_t istride,
  55. BASE out[],
  56. const size_t ostride,
  57. const size_t factor,
  58. const size_t product,
  59. const size_t n,
  60. const TYPE(gsl_complex) twiddle[]);