正弦波总和(傅里叶分解)

正弦波总和(傅里叶分解)

有人知道我如何使用 matlab 重新创建这样的图吗?我一直在浏览,但找不到太多关于这个主题的内容。我非常想采用非正弦但周期性的波形,并对其进行分解,然后以这种方式绘制它,作为一种概念证明,即可以使用傅立叶分析分解周期波形。在此处输入图片描述 任何帮助都将不胜感激。谢谢!

答案1

这是的基本功能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);

相关内容