This implementation uses only C++ standard library (complex numbers from <complex>).
# Build
make
# Run the FFT example
./fft
# Run tests
./test_fft
# Clean
make clean- Algorithm: Cooley-Tukey FFT (divide-and-conquer)
- Standard library only: Uses
<complex>,<vector>,<cmath> - Automatically pads input to next power of 2
- C++11 or later required