快速Fourier变换教案.pptVIP

  1. 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  4. 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  5. 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  6. 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  7. 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
快速Fourier变换教案

* * * IDFT的快速算法 算法 1 在DFT的FFT流程图中: IDFT的快速算法 算法 2 return FFT应用举例 分析过去300年的太阳黑子活动 具有周期性,每11年有一次最大值出现 数据:苏黎世太阳黑子相对数,同时记录了太阳黑子的数量和大小。 * load sunspot.dat year=sunspot(:,1); relNums=sunspot(:,2); plot(year,relNums) title(Sunspot Data) * 前50组数据 plot(year(1:50),relNums(1:50),b.-); * 利用FFT做频域分析 Y = fft(relNums); Y(1)=[]; %First component is the sum of data plot(Y,ro) title(Fourier Coefficients in the Complex Plane); xlabel(Real Axis); ylabel(Imaginary Axis); * 难以理解,考虑其功率(Complex magnitude squared Y)和频率之间的关系,即画出周期图 * plot(freq(1:40),power(1:40)) xlabel(cycles/year) * period=1./freq; plot(period,power); axis([0 40 0 2e+7]); ylabel(Power); xlabel(Period (Years/Cycle)); * hold on; index=find(power==max(power)); mainPeriodStr=num2str(period(index)); plot(period(index),power(index),r., MarkerSize,25); text(period(index)+2,power(index),[Period = ,mainPeriodStr]); hold off; * * * There are several ways to calculate the Discrete Fourier Transform (DFT), such as solving simultaneous linear equations or the correlation method described in Chapter 8. The Fast Fourier Transform (FFT) is another method for calculating the DFT. While it produces the same result as the other approaches, it is incredibly more efficient, often reducing the computation time by hundreds. This is the same improvement as flying in a jet aircraft versus walking! If the FFT were not available, many of the techniques described in this book would not be practical. While the FFT only requires a few dozen lines of code, it is one of the most complicated algorithms in DSP. But dont despair! You can easily use published FFT routines without fully understanding the internal workings. 一次复数乘法需用四次实数乘法和二次实数加法; 一次复数加法需用二次实数加法。 DFT的运算量与N2成正比。 * * 利用对称性可以将DFT运算中的某些项合并 利用对称性、周期性及可约性,可以将长序列的DFT分解为短序列的DFT。由于运算量与N的平方成正比,因此降低N后可以大大降低运算量。 * * * example of the time domain decomposition used in the FFT. The next step in the FFT algorithm is to find the frequency spectra of the 1 poin

文档评论(0)

aena45 + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档