当前位置:高等教育资讯网  >  中国高校课件下载中心  >  大学文库  >  浏览文档

上海交通大学:《数字信号处理 Digital Signal Processing(B)》教学资源_Reference Book_DSP of MIT_lec19

资源类别:文库,文档格式:PDF,文档页数:4,文件大小:123.61KB,团购合买
点击下载完整版文档(PDF)

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.341:DISCRETE-TIME SIGNAL PROCESSING OpenCourse Ware 2006 Lecture 19 FFT Algorithms Reading:Sections 9.1,9.3 and 9.4 in Oppenheim,Schafer Buck(OSB). The DFT of a finite-length sequence of length N is N- X()= ∑w, (1) m= where WN =e-i2/N.The IDFT is N-1 ∑X肉w 1 k=0 The DFT and the IDFT involve same operations except the sign of the exponent and the scale factor,so we will only focus on the computation of the DFT,and it is straightforward to apply the same analysis to IDFT. When xn]is complex,the term([n]W)requires one complex multiplication,which is equiv- alent to 4 real multiplications and 2 real additions.In order to compute X[k]fork=0,1,..., N-1,we need N2 complex multiplications and N(N-1)N2 complex additions. Here are some approaches to reduce computation: Don't do multiplies by unity. If xn]is real,we can calculate two transforms at one,which is illustrated in OSB Problem 9.31. Use the Goertzel algorithm (covered in the next lecture)which reduces the number of multiplications by 2. However,in all of the above cases,the number of multiplications and additions (MAD)is still proportional to N2. 1

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.341: Discrete-Time Signal Processing OpenCourseWare 2006 Lecture 19 FFT Algorithms Reading: Sections 9.1, 9.3 and 9.4 in Oppenheim, Schafer & Buck (OSB). The DFT of a finite-length sequence of length N is N−1 Wnk X(k) = , � x[n] N (1) n=0 = e−j2π/N where WN . The IDFT is N−1 1 W−nk x[n] = N � X[k] N . k=0 The DFT and the IDFT involve same operations except the sign of the exponent and the scale factor, so we will only focus on the computation of the DFT, and it is straightforward to apply the same analysis to IDFT. When x[n] is complex, the term (x[n]Wnk N ) requires one complex multiplication, which is equiv￾alent to 4 real multiplications and 2 real additions. In order to compute X[k] for k = 0, 1, . . ., N − 1, we need N2 complex multiplications and N(N − 1) ≈ N2 complex additions. Here are some approaches to reduce computation: • Don’t do multiplies by unity. • If x[n] is real, we can calculate two transforms at one, which is illustrated in OSB Problem 9.31. • Use the Goertzel algorithm (covered in the next lecture) which reduces the number of multiplications by 2. However, in all of the above cases, the number of multiplications and additions (MAD) is still proportional to N2. 1

FFT Algorithms In general,when we use FFT algorithms to compute an N-point DFT,the number of complex MAD's is proportional to N(p1 +p2 +...+pu),where N=P1P2....Pv. Example: N=2"→p1=p2=.=pm=2 Number of MAD's proportional to N.2v Nlog2 N. If N=210 =1024,without using FFT algorithms,number of MAD's to compute the N-point DFT is proportional to N2106,while the FFT needs MAD's proportional to N1log2N≈104. In this lecture,instead of discussing many variations of FFT algorithms in detail,we will focus on the two basic schemes and only consider the case that N is an integer power of 2,i.e.N=2. For the details of the derivation and various alternative forms,see OSB Sections 9.3 and 9.4. Decimation-in-Frequency Consider computing separately the even and odd numbered frequency samples. For the even numbered samples: N- X[2r]= ∑mwg2 n= (N/2)-1 网++当》na r=0,1,,2 (2) n=0 This is equivalent to adding the first half and the last half of the input sequence,and taking the (N/2)-point DFT.Adding the two halves of the sequence corresponds to time aliasing,which is reasonable because we are undersampling in the frequency domain when computing only the even-numbered frequency samples. Similarly,for the odd-numbered samples: N- X[2r+1]= ∑xmw2r+I) n=0 (N/2)-1 {m-n+ w吸wwe (3) n=0 This is equivalent to the (N/2)-point DFT of (x[n]-x[n+)W. 2

FFT Algorithms In general, when we use FFT algorithms to compute an N-point DFT, the number of complex MAD’s is proportional to N(p1 + p2 + . . . + pv), where N = p1 · p2 · · · · · pv. Example: N = 2v ⇒ p1 = p2 = . . . = pv = 2 Number of MAD’s : proportional to N · 2v ∝ N log2 N. If N = 210 = 1024, without using FFT algorithms, number of MAD’s to compute the N-point DFT is proportional to N2 ≈ 106, while the FFT needs MAD’s proportional to N log2 N ≈ 104. In this lecture, instead of discussing many variations of FFT algorithms in detail, we will focus on the two basic schemes and only consider the case that N is an integer power of 2, i.e. N = 2v. For the details of the derivation and various alternative forms, see OSB Sections 9.3 and 9.4. Decimation-in-Frequency Consider computing separately the even and odd numbered frequency samples. For the even numbered samples: N−1 n(2r) X[2r] = � x[n]WN n=0 (N/2)−1 N N = � {x[n] + x[n + ]}Wnr 2 N/2, r = 0, 1, . . . , 2 − 1. (2) n=0 This is equivalent to adding the first half and the last half of the input sequence, and taking the (N/2)-point DFT. Adding the two halves of the sequence corresponds to time aliasing, which is reasonable because we are undersampling in the frequency domain when computing only the even-numbered frequency samples. Similarly, for the odd-numbered samples: N−1 n(2r+1) X[2r + 1] = � x[n]WN n=0 (N/2)−1 N NWnr = � {x[n] − x[n + 2 ]}Wn N/2. (3) n=0 This is equivalent to the (N/2)-point DFT of (x[n] − x[n + N N . 2 ])Wn 2

The procedure suggested by Equation 2 and 3 is illustrated in OSB Figure 9.17 for the case N=8. Recall that N2 complex multiplications were required to compute the N-point DFT using Equation 1.By comparison,using the procedure in the figure above,we need two (N/2)-point DFTs and additional(N/2)complex multiplications.Therefore,the number of multiplications required to compute the N-point DFT using Equation 2 and 3 is 2+ N which is smaller than N2.The number of additions is also reduced to approximately 2.()2+N. Similarly,we can compute the (N/2)-point DFTs using the (N/4)-point DFTs as illustrated in OSB Figure 9.18.Now the number of multiplications required is 。N.N 4()2+2 4+2 We can continue the decomposition until we are left with only 2-point transforms which can be computed easily with the butterfly structure shown in OSB Figure 9.19. In general,using the complete decimation-in-frequency decomposition,we need (N/2)log2 N complex multiplications and Nlog2 N complex additions to compute the N-point DFT.The flow graph for the case of an 8-point DFT is given in OSB Figure 9.20. The flow graph above suggests a useful way of storing the original data and the results of the computation.If we store the input (xns)in the same order as they appear in the figure from top to bottom,the output(X[ks)will appear in bit-reversed order.That is,the binary digits are sorted starting with the least significant bit instead of starting with the most significant bit as in normal order sorting. Other rearrangements of the flow graph are discussed in OSB Section 9.4.2. Decimation-in-Time The decimation-in-frequency algorithm decomposes the output sequence X[k]into successively smaller subsequences.We can also decompose the input sequence x[n]into smaller subse- quences,starting from decomposing into the even-and odd-numbered samples. N-1 Xk= zinjWat n=0 ∑mw*+∑W n even n odd =Gik]+WHk], (4) 3

The procedure suggested by Equation 2 and 3 is illustrated in OSB Figure 9.17 for the case N = 8. Recall that N2 complex multiplications were required to compute the N-point DFT using Equation 1. By comparison, using the procedure in the figure above, we need two (N/2)-point DFTs and additional (N/2) complex multiplications. Therefore, the number of multiplications required to compute the N-point DFT using Equation 2 and 3 is N N 2 · ( 2 ) 2 + 2 , 2 ) which is smaller than N 2+N. 2. The number of additions is also reduced to approximately 2·( N Similarly, we can compute the (N/2)-point DFTs using the (N/4)-point DFTs as illustrated in OSB Figure 9.18. Now the number of multiplications required is N N 4 · ( 4 ) 2 + 2 N · + . 4 2 We can continue the decomposition until we are left with only 2-point transforms which can be computed easily with the butterfly structure shown in OSB Figure 9.19. In general, using the complete decimation-in-frequency decomposition, we need (N/2)log2 N complex multiplications and N log2 N complex additions to compute the N-point DFT. The flow graph for the case of an 8-point DFT is given in OSB Figure 9.20. The flow graph above suggests a useful way of storing the original data and the results of the computation. If we store the input (x[n]s) in the same order as they appear in the figure from top to bottom, the output(X[k]s) will appear in bit-reversed order. That is, the binary digits are sorted starting with the least significant bit instead of starting with the most significant bit as in normal order sorting. Other rearrangements of the flow graph are discussed in OSB Section 9.4.2. Decimation-in-Time The decimation-in-frequency algorithm decomposes the output sequence X[k] into successively smaller subsequences. We can also decompose the input sequence x[n] into smaller subse￾quences, starting from decomposing into the even- and odd- numbered samples. N−1 X[k] = � x[n]Wnk N n=0 = � x[n]Wnk N + � x[n]Wnk N n even n odd = G[k] + Wk N H[k], (4) 3

where G[k]is the (N/2)-point DFT of the even numbered x[n],and Hk]is the (N/2)-point DFT of the odd numbered xn].Note that both G[k]and H[k]are periodic in k with period (N/2),so when computing the value of X[N/2],we can use G[o]and H[0],and so on.OSB Figure 9.3 depicts the computation using Equation 4 for N=8. Now,the number of complex multiplications and complex additions are both reduced to 2(+N which is less than N2 for N>2.Similarly to the decimation-in-frequency algorithm,we can continue the decomposition until we are left with only two inputs as depicted in OSB Figure 9.5and9.7. OSB Figure 9.8 shows the basic butterfly structure in the flow graph.Since wN+w/2)=WWW②=-w5, we can further reduce the number of multiplications by replacing the structure in OSB Figure 9.8 with the one in OSB Figure 9.9. The flow graph of an 8-point DFT using the butterfly computation of OSB Figure 9.9 is shown in OSB Figure 9.10.Notice that the input is in bit-reverse order and the output is in normal order.We can rearrange nodes to sort the input in normal order and the output in bit-reverse order as shown in OSB Figure 9.14. In Lecture 6,we learned that the transposition of a flow graph is obtained by interchanging the input and output and reversing the direction of signal flow.Generally,for each decimation-in- time FFT algorithm flow graph,there exist a decimation-in-frequency algorithm obtained by transposing the original flow graph.One example is shown in OSB Figure 9.10 and 9.20.The flow graph in OSB Figure 9.10 depicts a decimation-in-time algorithm,and OSB Figure 9.20 shows a decimation-in-frequency flow graph.You can check that the flow graph in the right is the transpose of the flow graph in the left. As in the decimation-in-frequency algorithm,if we rearrange nodes to sort both the input and output in normal order,we can not accomplish in-place computation.A flow graph that does not allow in-place computation,but nonetheless useful,is shown in OSB Figure 9.16.The same geometry for each stage permits sequential data accessing and storage. 4

where G[k] is the (N/2)-point DFT of the even numbered x[n], and H[k] is the (N/2)-point DFT of the odd numbered x[n]. Note that both G[k] and H[k] are periodic in k with period (N/2), so when computing the value of X[N/2], we can use G[0] and H[0], and so on. OSB Figure 9.3 depicts the computation using Equation 4 for N = 8. Now, the number of complex multiplications and complex additions are both reduced to N 2 · ( 2 ) 2 + N, which is less than N2 for N > 2. Similarly to the decimation-in-frequency algorithm, we can continue the decomposition until we are left with only two inputs as depicted in OSB Figure 9.5 and 9.7. OSB Figure 9.8 shows the basic butterfly structure in the flow graph. Since W(r+N/2) NW(N/2) = −Wr = Wr N N N , we can further reduce the number of multiplications by replacing the structure in OSB Figure 9.8 with the one in OSB Figure 9.9. The flow graph of an 8-point DFT using the butterfly computation of OSB Figure 9.9 is shown in OSB Figure 9.10. Notice that the input is in bit-reverse order and the output is in normal order. We can rearrange nodes to sort the input in normal order and the output in bit-reverse order as shown in OSB Figure 9.14. In Lecture 6, we learned that the transposition of a flow graph is obtained by interchanging the input and output and reversing the direction of signal flow. Generally, for each decimation-in￾time FFT algorithm flow graph, there exist a decimation-in-frequency algorithm obtained by transposing the original flow graph. One example is shown in OSB Figure 9.10 and 9.20. The flow graph in OSB Figure 9.10 depicts a decimation-in-time algorithm, and OSB Figure 9.20 shows a decimation-in-frequency flow graph. You can check that the flow graph in the right is the transpose of the flow graph in the left. As in the decimation-in-frequency algorithm, if we rearrange nodes to sort both the input and output in normal order, we can not accomplish in-place computation. A flow graph that does not allow in-place computation, but nonetheless useful, is shown in OSB Figure 9.16. The same geometry for each stage permits sequential data accessing and storage. 4

点击下载完整版文档(PDF)VIP每日下载上限内不扣除下载券和下载次数;
按次数下载不扣除下载券;
24小时内重复下载只扣除一次;
顺序:VIP每日次数-->可用次数-->下载券;
已到末页,全文结束
相关文档

关于我们|帮助中心|下载说明|相关软件|意见反馈|联系我们

Copyright © 2008-现在 cucdc.com 高等教育资讯网 版权所有