How can I plot multiple FFT graph in three axes?
12 views (last 30 days)
Show older comments
Chen Hou Hoe
on 30 Apr 2017
Commented: Chen Hou Hoe
on 30 Apr 2017
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,

0 Comments
Accepted Answer
Image Analyst
on 30 Apr 2017
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 Comments
Image Analyst
on 30 Apr 2017
Edited: Image Analyst
on 30 Apr 2017
Try waterfall() or ribbon().
Or check out a bunch of possibilities in the gallery:
More Answers (0)
See Also
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!