├── .gitignore ├── LICENSE ├── README.md ├── images ├── Butterfly_8_Input_Example.jpg ├── TwiddleFactor_Diagram.jpg ├── demo_result.png └── sft_fft_diff.png ├── jfft.cpp ├── jfft.h ├── jfft.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/README.md -------------------------------------------------------------------------------- /images/Butterfly_8_Input_Example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/images/Butterfly_8_Input_Example.jpg -------------------------------------------------------------------------------- /images/TwiddleFactor_Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/images/TwiddleFactor_Diagram.jpg -------------------------------------------------------------------------------- /images/demo_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/images/demo_result.png -------------------------------------------------------------------------------- /images/sft_fft_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/images/sft_fft_diff.png -------------------------------------------------------------------------------- /jfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/jfft.cpp -------------------------------------------------------------------------------- /jfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/jfft.h -------------------------------------------------------------------------------- /jfft.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/jfft.pro -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontio/JFFT/HEAD/mainwindow.ui --------------------------------------------------------------------------------