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

《数字信号处理》教学参考资料(Numerical Recipes in C,The Art of Scientific Computing Second Edition)Chapter 13.0 Fourier and Spectral Applications 13.0 Introduction

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

Chapter 13.Fourier and Spectral http://www.nr. Applications .com or call 13.0 Introduction 11-800-672 Cambridge NUMERICAL RECIPES IN Fourier methods have revolutionized fields of science and engineering,from to make radio astronomy to medical imaging,from seismology to spectroscopy.In this server compu chapter,we present some of the basic applications of Fourier and spectral methods that have made these revolutions possible uter,is Press. Say the word "Fourier"to a numericist,and the response,as if by Pavlovian C:THE ART OF 号 conditioning,will likely be"FFT."Indeed,the wide application of Fourier methods Programs must be credited principally to the existence of the fast Fourier transform.Better 曲g mousetraps stand aside:If you speed up any nontrivial algorithm by a factor of a SCIENTIFIC million or so,the world will beat a path towards finding useful applications for it. The most direct applications of the FFT are to the convolution or deconvolution of 6 data(13.1),correlation and autocorrelation ($13.2),optimal filtering($13.3),power spectrum estimation($13.4),and the computation of Fourier integrals(813.9). COMPUTING As important as they are,however,FFT methods are not the be-all and end-all r Numerical 1888-199200 of spectral analysis.Section 13.5 is a brief introduction to the field of time-domain Further digital filters.In the spectral domain,one limitation of the FFT is that it always represents a function's Fourier transform as a polynomial in z=exp(2mifA) (cf.equation 12.1.7).Sometimes,processes have spectra whose shapes are not well represented by this form.An alternative form,which allows the spectrum to have poles in z,is used in the techniques of linear prediction(813.6)and maximum Recipes entropy spectral estimation (813.7). (outside Another significant limitation of all FFT methods is that they require the input Software. data to be sampled at evenly spaced intervals.For irregularly or incompletely North sampled data,other(albeit slower)methods are available,as discussed in $13.8. So-called wavelet methods inhabit a representation of function space that is America) neither in the temporal,nor in the spectral,domain,but rather something in-between visit website machine. Section 13.10 is an introduction to this subject.Finally $13.11 is an excursion into numerical use of the Fourier sampling theorem 537

Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). Chapter 13. Fourier and Spectral Applications 13.0 Introduction Fourier methods have revolutionized fields of science and engineering, from radio astronomy to medical imaging, from seismology to spectroscopy. In this chapter, we present some of the basic applications of Fourier and spectral methods that have made these revolutions possible. Say the word “Fourier” to a numericist, and the response, as if by Pavlovian conditioning, will likely be “FFT.” Indeed, the wide application of Fourier methods must be credited principally to the existence of the fast Fourier transform. Better mousetraps stand aside: If you speed up any nontrivial algorithm by a factor of a million or so, the world will beat a path towards finding useful applications for it. The most direct applications of the FFT are to the convolution or deconvolution of data (§13.1), correlation and autocorrelation (§13.2), optimal filtering (§13.3), power spectrum estimation (§13.4), and the computation of Fourier integrals (§13.9). As important as they are, however, FFT methods are not the be-all and end-all of spectral analysis. Section 13.5 is a brief introduction to the field of time-domain digital filters. In the spectral domain, one limitation of the FFT is that it always represents a function’s Fourier transform as a polynomial in z = exp(2πif∆) (cf. equation 12.1.7). Sometimes, processes have spectra whose shapes are not well represented by this form. An alternative form, which allows the spectrum to have poles in z, is used in the techniques of linear prediction (§13.6) and maximum entropy spectral estimation (§13.7). Another significant limitation of all FFT methods is that they require the input data to be sampled at evenly spaced intervals. For irregularly or incompletely sampled data, other (albeit slower) methods are available, as discussed in §13.8. So-called wavelet methods inhabit a representation of function space that is neither in the temporal, nor in the spectral, domain, but rather something in-between. Section 13.10 is an introduction to this subject. Finally §13.11 is an excursion into numerical use of the Fourier sampling theorem. 537

538 Chapter 13.Fourier and Spectral Applications 13.1 Convolution and Deconvolution Using the FFT We have defined the comolution of two functions for the continuous case in equation (12.0.8),and have given the comolution theorem as equation(12.0.9).The theorem says that the Fourier transform of the convolution of two functions is equal to the product of their individual Fourier transforms.Now,we want to deal with the discrete case.We will mention first the context in which convolution is a useful procedure,and then discuss how to compute it efficiently using the FFT. The convolution of two functions r(t)and s(t),denoted r*s,is mathematically equal to their convolution in the opposite order,s *r.Nevertheless,in most B applications the two functions have quite different meanings and characters.One of the functions,say s,is typically a signal or data stream,which goes on indefinitely 茶 in time (or in whatever the appropriate independent variable may be).The other function r is a"response function,"typically a peaked function that falls to zero in both directions from its maximum.The effect of convolution is to smear the signal s(t)in time according to the recipe provided by the response function r(t),as shown in Figure 13.1.1.In particular,a spike or delta-function of unit area in s which occurs 9 at some time to is supposed to be smeared into the shape of the response function itself,but translated from time 0 to time to as r(t-to). In the discrete case,the signal s(t)is represented by its sampled values at equal time intervals s;.The response function is also a discrete set of numbersr with the following interpretation:ro tells what multiple of the input signal in one channel (one 含色号分N particular value ofj)is copied into the identical output channel(same value ofj); r tells what multiple of input signal in channelj is additionally copied into output channelj+1;r tells the multiple that is copied into channel j-1:and so on for both positive and negative values of k in rk.Figure 13.1.2 illustrates the situation. Example:a response function with ro 1 and all other r&'s equal to zero is just the identity filter:convolution of a signal with this response function gives identically the signal.Another example is the response function withr14=1.5 and all other rk's equal to zero.This produces convolved output that is the input signal Numerical Recipes 10621 multiplied by 1.5 and delayed by 14 sample intervals. Evidently,we have just described in words the following definition of discrete convolution with a response function of finite duration M: 43106 M/2 (r*s)方≡ sj-k Tk (13.1.1) k=-M/2+1 North If a discrete response function is nonzero only in some range-M/2<k<M/2, where M is a sufficiently large even integer,then the response function is called a finite impulse response (FIR),and its duration is M.(Notice that we are defining M as the number of nonzero values of rk;these values span a time interval of M-1 sampling times.)In most practical circumstances the case of finite M is the case of interest,either because the response really has a finite duration,or because we choose to truncate it at some point and approximate it by a finite-duration response function. The discrete comvolution theorem is this:If a signal sj is periodic with period N,so that it is completely determined by the N values so,...,sN-1,then its

538 Chapter 13. Fourier and Spectral Applications Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). 13.1 Convolution and Deconvolution Using the FFT We have defined the convolution of two functions for the continuous case in equation (12.0.8), and have given the convolution theorem as equation (12.0.9). The theorem says that the Fourier transform of the convolution of two functions is equal to the product of their individual Fourier transforms. Now, we want to deal with the discrete case. We will mention first the context in which convolution is a useful procedure, and then discuss how to compute it efficiently using the FFT. The convolution of two functions r(t) and s(t), denoted r ∗ s, is mathematically equal to their convolution in the opposite order, s ∗ r. Nevertheless, in most applications the two functions have quite different meanings and characters. One of the functions, say s, is typically a signal or data stream, which goes on indefinitely in time (or in whatever the appropriate independent variable may be). The other function r is a “response function,” typically a peaked function that falls to zero in both directions from its maximum. The effect of convolution is to smear the signal s(t) in time according to the recipe provided by the response function r(t), as shown in Figure 13.1.1. In particular, a spike or delta-function of unit area in s which occurs at some time t0 is supposed to be smeared into the shape of the response function itself, but translated from time 0 to time t0 as r(t − t0). In the discrete case, the signal s(t) is represented by its sampled values at equal time intervals sj . The response function is also a discrete set of numbers rk, with the following interpretation: r0 tells what multiple of the input signal in one channel (one particular value of j) is copied into the identical output channel (same value of j); r1 tells what multiple of input signal in channel j is additionally copied into output channel j + 1; r−1 tells the multiple that is copied into channel j − 1; and so on for both positive and negative values of k in rk. Figure 13.1.2 illustrates the situation. Example: a response function with r0 = 1 and all other rk’s equal to zero is just the identity filter: convolution of a signal with this response function gives identically the signal. Another example is the response function with r 14 = 1.5 and all other rk’s equal to zero. This produces convolved output that is the input signal multiplied by 1.5 and delayed by 14 sample intervals. Evidently, we have just described in words the following definition of discrete convolution with a response function of finite duration M: (r ∗ s)j ≡ M/  2 k=−M/2+1 sj−k rk (13.1.1) If a discrete response function is nonzero only in some range −M/2 < k ≤ M/2, where M is a sufficiently large even integer, then the response function is called a finite impulse response (FIR), and its duration is M. (Notice that we are defining M as the number of nonzero values of rk; these values span a time interval of M − 1 sampling times.) In most practical circumstances the case of finite M is the case of interest, either because the response really has a finite duration, or because we choose to truncate it at some point and approximate it by a finite-duration response function. The discrete convolution theorem is this: If a signal sj is periodic with period N, so that it is completely determined by the N values s0,...,sN−1, then its

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

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

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