码迷,mamicode.com
首页 > 其他好文 > 详细

matlab GUI使用subplot画图后如何清空坐标轴

时间:2019-04-04 20:26:06      阅读:403      评论:0      收藏:0      [点我收藏+]

标签:ipa   div   mat   handles   画图   uip   atl   class   坐标轴   

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画图后如何清空坐标轴

标签:ipa   div   mat   handles   画图   uip   atl   class   坐标轴   

原文地址:https://www.cnblogs.com/zzx1905/p/subplot_new_axes.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!