Mathematica制作傅里叶变换动图

王 茂南 2018年3月22日06:47:08
评论
3 639字阅读2分7秒
摘要这一篇文章主要是想用一张图给出傅里叶变换的图解,并且会给出这段动图的代码,方便大家进行自己的演示。

这是一段在百度贴吧里看到的代码,最后作出的动画效果很有意思,记录在此。

FourierF[a_, t_] := a.Table[Sin[2 Pi i t], {i, Length[a]}]; 
FourierAnim[a_, t_] := Module[{A = Accumulate[a*Table[Cos[2 Pi i t], {i, Length[a]}]],  B = Accumulate[a*Table[Sin[2 Pi i t], {i, Length[a]}]]},  PrependTo[A, 0];
 PrependTo[B, 0];
  Show[Graphics[ Table[{Circle[{A[[i]], B[[i]]}, a[[i]]], Darker[Red],  If[i != Length@a,     Line[{{A[[i]], B[[i]]}, {A[[i + 1]], B[[i + 1]]}}], {Red,    Dashed, Line[{{A[[i]], B[[i]]}, {2, B[[i]]}}]}]}, {i,    Length@a}], PlotRange -> {{-1.5, 3}, {-1, 1}}],  Plot[FourierF[a[[;; -2]], t - \[Tau]], {\[Tau], 2, 3}]]]; 
 a = Table[(1 - (-1)^i)/i, {i, 16}]/Pi;
Manipulate[FourierAnim[a[[;; j]], t], {t, 0, 1}, {j, 1, Length@a, 1}]

上面的代码运行出的效果如下:

Mathematica制作傅里叶变换动图

这个图有点小,我们再放大看一下

Mathematica制作傅里叶变换动图

最后我们来看一下动图

Mathematica制作傅里叶变换动图

  • 微信公众号
  • 关注微信公众号
  • weinxin
  • QQ群
  • 我们的QQ群号
  • weinxin
王 茂南
  • 本文由 发表于 2018年3月22日06:47:08
  • 转载请务必保留本文链接:https://mathpretty.com/9079.html
匿名

发表评论

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: