Vous êtes sur la page 1sur 23

Discrete Fourier Transform

Discrete Fourier transform (DFT) pairs


N 1
X [k ] = x[n]WNkn , k = 0,1, K , N 1 N complex multiplications
n =0
N-1 complex additions
N 1
1
x[n] =
N
X
k =0
[ k ]W kn
N , n = 0,1, K , N 1,
2
j kn
where WN kn = e N

DFT/IDFT can be implemented by using the same hardware


It requires N2 complex multiplications and N(N-1) complex
additions

cwliu@twins.ee.nctu.edu.tw 1
Decimation in Time

twiddle factor

N+2(N/2)2 complex multiplications vs. N2 complex multiplication

cwliu@twins.ee.nctu.edu.tw 2
cwliu@twins.ee.nctu.edu.tw 3
Flow Graph of the DIT FFT

cwliu@twins.ee.nctu.edu.tw 4
cwliu@twins.ee.nctu.edu.tw 5
8-point DIT DFT

cwliu@twins.ee.nctu.edu.tw 6
Remarks
It requires v=log2N stages
Each stage has N complex multiplications and N complex
additions
The number of complex multiplications (as well as additions)
is equal to N log2N
By symmetry property, we have (butterfly operation)

WNr + N 2 = WNrWNN 2 = WNr e j = WNN 2

2 complex multiplications 1 complex multiplications


2 complex additions 2 complex additions
cwliu@twins.ee.nctu.edu.tw 7
8-point FFT

Bit-Reversed order Normal order


cwliu@twins.ee.nctu.edu.tw 8
In-Place Computation
The same register array can be used in each stage

X0[000] X1[000] X2[000] X3[000]

X0[001] X1[001] X2[001] X3[001]

X0[010] X1[010] X2[010] X3[010]

X0[011] X1[011] X2[011] X3[011]

X0[100] X1[100] X2[100] X3[100]

X0[101] X1[101] X2[101] X3[101]

X0[110] X1[110] X2[110] X3[110]

X0[111] X1[111] X2[111] X3[111]

Stage 1 Stage 2 Stage 3


cwliu@twins.ee.nctu.edu.tw 9
8-point FFT

Normal order The original from given by Cooly


Bit-reversed order
& Tukey (DIT FFT)
cwliu@twins.ee.nctu.edu.tw 10
Normal-Order Sorting v.s.
Bit-Reversed Sorting

top even

bottom
odd

Normal Order Bit-reversed Order


cwliu@twins.ee.nctu.edu.tw 11
DFT v.s. Radix-2 FFT
DFT: N2 complex multiplications and N(N-1)
complex additions
Recall that each butterfly operation requires one
complex multiplication and two complex additions
FFT: (N/2) log2N multiplications and N log2N
complex additions

In-place computations: the input and the output


nodes for each butterfly operation are
horizontally adjacent only one storage arrays
will be required

cwliu@twins.ee.nctu.edu.tw 12
Alternative Form

Normal order Normal order


Two complex storage arrays are necessary !!

cwliu@twins.ee.nctu.edu.tw 13
Alternative Form
Parallel processing: Sequential processing:
4 BF units 1 BF unit
X1[000] X1[000]
X2[000] X2[000]

X1[001] X2[001] X1[001] X2[001]


X1[010] X2[010] X1[010] X2[010]
X1[011] X2[011] X1[011] X2[011]
X1[100] X2[100] X1[100] X2[100]
X1[101] X2[101] X1[101] X2[101]
X1[110] X2[110] X1[110] X2[110]
X1[111] X2[111] X1[111] X2[111]
Stage 1
Stage 1
The same register array
can be used Two register arrays are required

cwliu@twins.ee.nctu.edu.tw 14
Alternative Form 2

Bit-reversed order Normal order


The geometry of each stage is identical

cwliu@twins.ee.nctu.edu.tw 15
Decimation in Frequency (DIF)
N 1
Recall that the DFT is X [k ] = x[n ]WNnk , 0 k N 1
n =0

DIT FFT algorithm is based on the decomposition of the


DFT computations by forming small subsequences in time
domain index n: n=2 or n=2+1
One can consider dividing the output sequence X[k], in
frequency domain, into smaller subsequences: k=2r or k=2r+1:

Substitution of variables

cwliu@twins.ee.nctu.edu.tw 16
DIF FFT Algorithm (1)

is just N/2-point DFT. Similarly,

cwliu@twins.ee.nctu.edu.tw 17
DIF FFT Algorithm (2)

v=log2N stages, each stage has N/2 butterfly operation.


(N/2)log2N complex multiplications, N complex additions
cwliu@twins.ee.nctu.edu.tw 18
Remarks
The basic butterfly operations for DIT FFT and DIF FFT
respectively are transposed-form pair.

DIT BF unit DIF BF unit

The I/O values of DIT FFT and DIF FFT are the same
Applying the transpose transform to each DIT FFT
algorithm, one obtains DIF FFT algorithm

cwliu@twins.ee.nctu.edu.tw 19
Implementation Issues
Radix-2, Radix-4, Radix-8, Split-Radix,Radix-22, ,
I/O Indexing
In-place computation
Bit-reversed sorting is necessary
Efficient use of memory
Random access (not sequential) of memory. An address
generator unit is required.
Good for cascade form: FFT followed by IFFT (or vice
versa)
E.g. fast convolution algorithm
Twiddle factors
Look up table
CORDIC rotator

cwliu@twins.ee.nctu.edu.tw 20
Recall Linear Convolution

cwliu@twins.ee.nctu.edu.tw 21
Fast Convolution with the FFT
Given two sequences x1 and x2 of length N1 and N2
respectively
Direct implementation requires N1N2 complex
multiplications
Consider using FFT to convolve two sequences:
Pick N, a power of 2, such that NN1+N2-1
Zero-pad x1 and x2 to length N
Compute N-point FFTs of zero-padded x1 and x2, one
obtains X1 and X2
Multiply X1 and X2
Apply the IFFT to obtain the convolution sum of x1 and
x2
Computation complexity: 2(N/2) log2N + N + (N/2)log2N

cwliu@twins.ee.nctu.edu.tw 22
Other Fast Algorithm for DFT
Goertzel Algorithm
By reformulating DFT as a convolution
it is not restricted to computation of the DFT but any
desired set of samples of the Fourier transform of a
sequence

Winograd Algorithm
An efficient algorithm for computing short convolutions
The number of multiplication complexity is of order
O(N), however the number of addition complexity is
significantly increased.

Chirp Transform Algorithm

cwliu@twins.ee.nctu.edu.tw 23

Vous aimerez peut-être aussi