<< Chapter < Page | Chapter >> Page > |
A powerful approach to the development of efficient algorithms is to break a large problem into multiple small ones.One method for doing this with both the DFT and convolution uses a linear change of index variables to map the original one-dimensional problem into a multi-dimensional problem. Thisapproach provides a unified derivation of the Cooley-Tukey FFT, the prime factor algorithm (PFA) FFT, and the Winograd Fourier transformalgorithm (WFTA) FFT. It can also be applied directly to convolution to break it down into multiple short convolutions that can be executedfaster than a direct implementation. It is often easy to translate an algorithm using index mapping into an efficient program.
The basic definition of the discrete Fourier transform (DFT) is
where , , and are integers, , the basis functions are the roots of unity,
and .
If the values of the transform are calculated from the values of the data, , it is easily seen that complex multiplications and approximately that same number of complex additions are required. Onemethod for reducing this required arithmetic is to use an index mapping (a change of variables) to change the one-dimensional DFTinto a two- or higher dimensional DFT. This is one of the ideas behind the very efficient Cooley-Tukey [link] and Winograd [link] algorithms. The purpose of index mapping is to change a large problem into several easier ones [link] , [link] . This is sometimes called the “divide and conquer" approach [link] but a more accurate description would be “organize and share" which explains the process of redundancy removal or reduction.
For a length-N sequence, the time index takes on the values
When the length of the DFT is not prime, can be factored as and two new independent variables can be defined over the ranges
A linear change of variables is defined which maps and to and is expressed by
where are integers and the notation denotes the integer residue of modulo [link] . This map defines a relation between all possible combinations of and in [link] and [link] and the values for in [link] . The question as to whether all of the in [link] are represented, i.e., whether the map is one-to-one (unique), has beenanswered in [link] showing that certain integer always exist such that the map in [link] is one-to-one. Two cases must be considered.
and are relatively prime, i.e., the greatest common divisor .
The integer map of [link] is one-to-one if and only if:
where and are integers.
and are not relatively prime, i.e., .
The integer map of [link] is one-to-one if and only if:
or
Notification Switch
Would you like to follow the 'Fast fourier transforms' conversation and receive update notifications?