How can I plot multiple FFT graph in three axes?
조회 수: 6 (최근 30일)
이전 댓글 표시
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
채택된 답변
Image Analyst
2017년 4월 30일
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
Image Analyst
2017년 4월 30일
편집: Image Analyst
2017년 4월 30일
Try waterfall() or ribbon().
Or check out a bunch of possibilities in the gallery:
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!