1、FFTW主页:http://www.fftw.org/
2、Github下载 :https://github.com/FFTW/fftw3
3、Windows版本:http://www.fftw.org/install/windows.html
fftw动态库分32、64位版本。
VS2013 64为编译;
In order to link to them from Visual C++,
you will need to create .lib "import libraries"
using the lib.exe program included with VC++.
利用lib.exe命令生成动态库入口lib。
cd C:\Users\admin\Desktop\fftw\fftw-3.3.5-dll64
C:
lib /machine:x64 /def:libfftw3f-3.def
lib /machine:x64 /def:libfftw3-3.def
lib /machine:x64 /def:libfftw3l-3.def
三个版本对应不同的数据精度: single/double/long-double precision。