正弦曲线之和(傅立叶分解)


0

有谁知道如何使用matlab重建这样的情节?一直在浏览,但不能真正找到很多关于这个话题。 我非常希望采用非正弦但周期性的波形并将其分解并以这种方式绘制,作为一种概念证明,即使用傅里叶分析可以分解周期波形。 enter image description here 任何帮助将不胜感激。谢谢!


错误的论坛,请尝试Stackoverflow。 (如果你很勇敢,你也可以试试Latex。:-)
skvery

Answers:


0

这是一个基本功能 plot3

t = 0:0.1:100;
s1 = sin(t1);
f1 = ones(1, 1001);
plot3(t1, s1, f1);
hold on % put the same plot on the same figure
s2 = sin(t/2);
f2 = ones(1, 1001)*2;
plot3(t2, s2, f2);
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.