<< Chapter < Page | Chapter >> Page > |
The power-of-two FFT algorithms , such as the radix-2 and radix-4 FFTs, and the common-factor and prime-factor FFTs, achieve great reductions in computational complexity of the DFT when the length, , is a composite number.DFTs of prime length are sometimes needed, however, particularly for the short-length DFTs in common-factor or prime-factor algorithms.The methods described here, along with the composite-length algorithms, allow fast computation of DFTs of any length.
There are two main ways of performing DFTs of prime length:
Rader's conversion is a one-dimensional index-mapping scheme that turns a length- DFT ( prime) into a length-( ) convolution and a few additions. Rader's conversion works only for prime-length .
An index map simply rearranges the order of the sum operation in the DFT definition . Because addition is a commutative operation, the same mathematical result is producedfrom any order, as long as all of the same terms are added once and only once. (This is the condition that defines an index map.)Unlike the multi-dimensional index maps used in deriving common factor and prime-factor FFTs , Rader's conversion uses a one-dimensional index map in a finite group of integers:
If is prime, there exists an integer " " called a primitive root , such that the index map , , uniquely generates all elements
For prime, the inverse of (i.e. is also a primitive root (call it ).
So why do we care? Because we can use these facts to turn a DFT into a convolution!
Let , where for convenience in the DFT equation. For
, , where for visibility the matrix entries represent only the power , of the corresponding DFT term Note that the 4-by-4 circulant matrix corresponds to a length-4 circular convolution.
Rader's conversion turns a prime-length DFT into a few adds and a composite-length ( ) circular convolution, which can be computed efficiently using either
S. Winograd has proved that a length- circular or linear convolution or DFT requires less than multiplies (for real data), or real multiplies for complex data. (This doesn't count multiplies by rational fractions, like or or , which can be computed with additions and one overall scaling factor.) Furthermore, Winograd showed how toconstruct algorithms achieving these counts. Winograd prime-length DFTs and convolutions have the followingcharacteristics:
The Winograd Fourier Transform Algorithm (WFTA) is a technique that recombines the short Winograd modules in a prime-factor FFT into a composite- structure with fewer multiplies but more adds. While theoretically interesting,WFTAs are complicated and different for every length, and on modern processors with hardware multipliers the trade of multiplies for manymore adds is very rarely useful in practice today.
Notification Switch
Would you like to follow the 'Digital signal processing: a user's guide' conversation and receive update notifications?