Skip to content
Jinhui-Lin edited this page Aug 18, 2019 · 12 revisions

Q

  • 变换(Transform) -> 傅里叶变换(Fourier Transform) -> 傅里叶级数(Fourier Series) -> 傅里叶快速变换(Fast Fourier Transform)
  • FFT 和 DFT 有啥区别?
  • FFT 目前的主流实现方式有哪些(Cooley-Tukey algorithm)?速度最快的方式?代码空间最省的方式?

Tutorial

Paper

Example

Library

  • FFTW : FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST). We believe that FFTW, which is free software, should become the FFT library of choice for most applications.
  • FFTSS : FFTSS is an open source library for computing the Fast Fourier Transform. Since FFTW is already the de facto standard FFT library, we made the interfaces of this library almost compatible with those of FFTW. This makes it easy to run your applications coded for FFTW.
  • KISS FFT : a Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid
Clone this wiki locally