vector-radix FFT algorithm
{{Short description|Multidimensional fast Fourier transform algorithm}}
The vector-radix FFT algorithm, is a multidimensional fast Fourier transform (FFT) algorithm, which is a generalization of the ordinary Cooley–Tukey FFT algorithm that divides the transform dimensions by arbitrary radices. It breaks a multidimensional (MD) discrete Fourier transform (DFT) down into successively smaller MD DFTs until, ultimately, only trivial MD DFTs need to be evaluated.{{cite book|last1=Dudgeon|first1=Dan|last2=Russell|first2=Mersereau|title=Multidimensional Digital Signal Processing|date=September 1983|publisher=Prentice Hall|isbn=0136049591|pages=76}}
The most common multidimensional FFT algorithm is the row-column algorithm, which means transforming the array first in one index and then in the other, see more in FFT. Then a radix-2 direct 2-D FFT has been developed,{{cite journal|last1=Rivard|first1=G.|title=Direct fast Fourier transform of bivariate functions|journal=IEEE Transactions on Acoustics, Speech, and Signal Processing|volume=25|issue=3|pages=250–252|doi=10.1109/TASSP.1977.1162951|year=1977}} and it can eliminate 25% of the multiplies as compared to the conventional row-column approach. And this algorithm has been extended to rectangular arrays and arbitrary radices,{{cite book|last1=Harris|first1=D.|last2=McClellan|first2=J.|last3=Chan|first3=D.|last4=Schuessler|first4=H.|title=ICASSP '77. IEEE International Conference on Acoustics, Speech, and Signal Processing |chapter=Vector radix fast Fourier transform |volume=2|pages=548–551|doi=10.1109/ICASSP.1977.1170349|year=1977}} which is the general vector-radix algorithm.
Vector-radix FFT algorithm can reduce the number of complex multiplications significantly, compared to row-vector algorithm. For example, for a element matrix (M dimensions, and size N on each dimension), the number of complex multiples of vector-radix FFT algorithm for radix-2 is , meanwhile, for row-column algorithm, it is . And generally, even larger savings in multiplies are obtained when this algorithm is operated on larger radices and on higher dimensional arrays.
Overall, the vector-radix algorithm significantly reduces the structural complexity of the traditional DFT having a better indexing scheme, at the expense of a slight increase in arithmetic operations. So this algorithm is widely used for many applications in engineering, science, and mathematics, for example, implementations in image processing,{{cite journal|last1=Buijs|first1=H.|last2=Pomerleau|first2=A.|last3=Fournier|first3=M.|last4=Tam|first4=W.|title=Implementation of a fast Fourier transform (FFT) for image processing applications|journal=IEEE Transactions on Acoustics, Speech, and Signal Processing|date=Dec 1974|volume=22|issue=6|pages=420–424|doi=10.1109/TASSP.1974.1162620}} and high speed FFT processor designing.{{cite book|last1=Badar|first1=S.|last2=Dandekar|first2=D.|title=2015 International Conference on Industrial Instrumentation and Control (ICIC) |chapter=High speed FFT processor design using radix −4 pipelined architecture |pages=1050–1055|doi=10.1109/IIC.2015.7150901|year=2015|isbn=978-1-4799-7165-7|s2cid=11093545 }}
2-D DIT case
As with the Cooley–Tukey FFT algorithm, the two dimensional vector-radix FFT is derived by decomposing the regular 2-D DFT into sums of smaller DFT's multiplied by "twiddle" factors.
A decimation-in-time (DIT) algorithm means the decomposition is based on time domain , see more in Cooley–Tukey FFT algorithm.
We suppose the 2-D DFT is defined
:
where ,and , and is an matrix, and .
For simplicity, let us assume that , and the radix- is such that is an integer.
Using the change of variables:
- , where
- , where
where or , then the two dimensional DFT can be written as:{{cite journal|last1=Chan|first1=S. C.|last2=Ho|first2=K. L.|title=Split vector-radix fast Fourier transform|journal=IEEE Transactions on Signal Processing|volume=40|issue=8|pages=2029–2039|doi=10.1109/78.150004|bibcode=1992ITSP...40.2029C|year=1992}}
:
File:2x2 radix butterfly diagram.svg
The equation above defines the basic structure of the 2-D DIT radix- "butterfly". (See 1-D "butterfly" in Cooley–Tukey FFT algorithm)
When , the equation can be broken into four summations, and this leads to:
: for ,
where .
The can be viewed as the -dimensional DFT, each over a subset of the original sample:
- is the DFT over those samples of for which both and are even;
- is the DFT over the samples for which is even and is odd;
- is the DFT over the samples for which is odd and is even;
- is the DFT over the samples for which both and are odd.
Thanks to the periodicity of the complex exponential, we can obtain the following additional identities, valid for :
- ;
- ;
- .
2-D DIF case
Similarly, a decimation-in-frequency (DIF, also called the Sande–Tukey algorithm) algorithm means the decomposition is based on frequency domain , see more in Cooley–Tukey FFT algorithm.
Using the change of variables:
- , where
- , where
where or , and the DFT equation can be written as:
:
Other approaches
The split-radix FFT algorithm has been proved to be a useful method for 1-D DFT. And this method has been applied to the vector-radix FFT to obtain a split vector-radix FFT.{{cite book|last1=Pei|first1=Soo-Chang|last2=Wu|first2=Ja-Lin|title=ICASSP '87. IEEE International Conference on Acoustics, Speech, and Signal Processing |chapter=Split vector radix 2D fast Fourier transform |volume=12|date=April 1987|pages=1987–1990|doi=10.1109/ICASSP.1987.1169345|s2cid=118173900 }}
In conventional 2-D vector-radix algorithm, we decompose the indices into 4 groups:
:
\begin{array}{lcl}
X(2 k_1, 2 k_2) & : & \text{even-even} \\
X(2 k_1, 2 k_2 +1) & : & \text{even-odd} \\
X(2 k_1 +1, 2 k_2) & : & \text{odd-even} \\
X(2 k_1+1, 2 k_2+1) & : & \text{odd-odd}
\end{array}
By the split vector-radix algorithm, the first three groups remain unchanged, the fourth odd-odd group is further decomposed into another four sub-groups, and seven groups in total:
:
\begin{array}{lcl}
X(2 k_1, 2 k_2) & : & \text{even-even} \\
X(2 k_1, 2 k_2 +1) & : & \text{even-odd} \\
X(2 k_1 +1, 2 k_2) & : & \text{odd-even} \\
X(4 k_1+1, 4 k_2+1) & : & \text{odd-odd} \\
X(4 k_1+1, 4 k_2+3) & : & \text{odd-odd} \\
X(4 k_1+3, 4 k_2+1) & : & \text{odd-odd} \\
X(4 k_1+3, 4 k_2+3) & : & \text{odd-odd}
\end{array}
That means the fourth term in 2-D DIT radix- equation, becomes:{{cite journal|last1=Wu|first1=H.|last2=Paoloni|first2=F.|title=On the two-dimensional vector split-radix FFT algorithm|journal=IEEE Transactions on Acoustics, Speech, and Signal Processing|date=Aug 1989|volume=37|issue=8|pages=1302–1304|doi=10.1109/29.31283}}
:
where
The 2-D N by N DFT is then obtained by successive use of the above decomposition, up to the last stage.
It has been shown that the split vector radix algorithm has saved about 30% of the complex multiplications and about the same number of the complex additions for typical array, compared with the vector-radix algorithm.