|
|
|
|
|
by gp7
2731 days ago
|
|
The code is mostly equivalent to the recursive form found in the wikipedia article on the cooley-tukey algorithm. This is a good one to learn from, as its not only a simple formulation but it forms the basis of modern optimised FFTs such as FFTW (source[1], from the authors of FFTW). As an aside, I also find the non-recursive, breadth-first, form easy to derive thru a process of code transformations of the depth-first form; explanations that start breadth-first are somewhat bewildering [1] https://cnx.org/contents/ulXtQbN7@15/Implementing-FFTs-in-Pr... |
|