正弦曲線之和(傅立葉分解)

正弦曲線之和(傅立葉分解)

有沒有人知道如何使用 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);

相關內容