How to keep a certain axes unchanged
1 次查看(过去 30 天)
显示 更早的评论
I am using following statement to clear all axes in gui at once.
arrayfun (@cla,findall (0,'type','axes'));
The statement works well and clears all axes. But out of all axes I need to keep one axes not to be cleared as it displays logo. How to modify above statement so that said axes shouldn't be cleared.
0 个评论
采纳的回答
Walter Roberson
2017-7-16
setdiff the results of the findall and the handles you want to keep.
2 个评论
Walter Roberson
2017-7-16
>> a(1) = subplot(2,2,1); a(2) = subplot(2,2,2); a(3) = subplot(2,2,3); a(4) = subplot(2,2,4);
>> setdiff(findall (0,'type','axes'),a(2))
ans =
3×1 Axes array:
Axes
Axes
Axes
Perhaps you reversed the order of the parameters for setdiff() ?
更多回答(2 个)
Image Analyst
2017-7-16
Since you probably have only a handful of known axes, just call cla on them separately. I mean, why complicate things???
% Clear axes 1, 2, 4, and 5, but not 3
cla(ax1,'reset')
cla(ax2,'reset')
cla(ax4,'reset')
cla(ax5,'reset')
0 个评论
Abdurrehman
2017-7-16
1 个评论
Image Analyst
2017-7-16
If you have too many axes, either your desktop is cluttered with dozens upon dozens of windows, or if they are all on a single figure, the axes will be very tiny. Hopefully you actually only have like 9 or fewer and can use my suggestion because it's easy to understand. And hopefully one day you will be able to write long programs with many statements. If you do use Walter's solution using setdiff() and arrayfun(), be sure to document your code well to make it maintainable, because I think that method is less obvious to someone who comes along trying to follow your code, especially without comments and explanation. Sure it's compact but that comes at a price of not being obvious what it does. I mean if you were inheriting someone's code, which would you prefer to inherit and maintain?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!