You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
391 B

9 years ago
9 years ago
  1. //! [Discrete Fourier transform][1].
  2. //!
  3. //! [1]: https://en.wikipedia.org/wiki/Discrete_Fourier_transform
  4. extern crate complex as number;
  5. macro_rules! power_of_two(
  6. ($data:expr) => ({
  7. let n = $data.len();
  8. if !n.is_power_of_two() {
  9. panic!("expected the number of points to be a power of two");
  10. }
  11. n
  12. });
  13. );
  14. pub mod complex;
  15. pub mod real;