How to plot subplots in GUI at axes?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I created some axes object in the GUI. I want to plot 2 subplots in the same axes.
Is it possible and how to do it if it is possible?
Thanks,
댓글 수: 0
답변 (2개)
Image Analyst
2012년 7월 17일
You don't. You place two axes on the GUI instead of one. Or else you manually stitch together images to form one big image that you then display in the single axes.
댓글 수: 0
Walter Roberson
2012년 7월 17일
subplot() is defined to use one axes per subplot, and by default subplot() erases any other axes it overlaps. You cannot have multiple subplots in one axes.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!