How can I plot multiple FFT graph in three axes?

I have different frequency spectrum graph, I wish to plot them in three axes to shows the different between each frequency spectrum graph.
For example,

 採用された回答

Image Analyst
Image Analyst 2017 年 4 月 30 日

0 投票

So call plot() 3 different times, specifying the axes you want the plot to show up in. Not sure what the difficulty is.
suplot(3, 1, 1);
plot(fft1, 'b-');
suplot(3, 1, 2);
plot(fft2, 'b-');
suplot(3, 1, 3);
plot(fft3, 'b-');

4 件のコメント

Chen Hou Hoe
Chen Hou Hoe 2017 年 4 月 30 日
編集済み: Chen Hou Hoe 2017 年 4 月 30 日
Hi, Thanks for the fast reply. Based on my understanding, the answers you given is for multiple subplot, the kind of plot I want is multiple fft on the same plot as the imagine I attached.
Chen Hou Hoe
Chen Hou Hoe 2017 年 4 月 30 日
anyone please enlighten me, I been searching for everywhere for the answer.
Image Analyst
Image Analyst 2017 年 4 月 30 日
編集済み: Image Analyst 2017 年 4 月 30 日
Try waterfall() or ribbon().
Or check out a bunch of possibilities in the gallery:
Chen Hou Hoe
Chen Hou Hoe 2017 年 4 月 30 日
Thank you so much! I think I found my answers from your link, really appreciate you help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by