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!