sftpack, a Python code which carries out some "slow" Fourier transforms, that is, Fourier transforms without the techniques that allow for very fast computation.
The intention is to make the underlying calculation clear, and to provide a simple check and comparison of timing and usage for the fast calculations.
The fast Fourier transform is a highly efficient procedure. However, the coding of the algorithm, and the conventions for indexing, ordering, and normalization, can make it quite difficult to understand what is being done, or even to see how to use the software correctly. This means that a coding error or mistaken use can be undetected.
The computer code and data files described and made available on this web page are distributed under the MIT license
sftpack is available in a C version and a C++ version and a FORTRAN90 version and a MATLAB version and a Python version.
c8lib, a Python code which implements certain elementary functions for double precision complex variables;
cosine_transform, a Python code which demonstrates some simple properties of the discrete cosine transform (DCT).
sine_transform, a Python code which demonstrates some simple properties of the discrete sine transform.