matlab GUI使用subplot画图后如何清空坐标轴
Posted zzx1905
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab GUI使用subplot画图后如何清空坐标轴相关的知识,希望对你有一定的参考价值。
matlab GUI使用subplot画图后如何清空坐标轴:
假设有四个子坐标,分别为h1,h2,h3,h4
h = 0; if ishandle(h1) delete(h1); h = 1; end if ishandle(h2) delete(h2); h = 1; end if ishandle(h3) delete(h3); h = 1; end if ishandle(h4) delete(h4); h1 = 1; end if h axes(‘parent‘,handles.uipanel1) %重建一个axes end
以上是关于matlab GUI使用subplot画图后如何清空坐标轴的主要内容,如果未能解决你的问题,请参考以下文章
Matlab GUI 高手来~怎样在指定的 axes 上绘制 subplot 图?