How to close only anova figures
2 次查看(过去 30 天)
显示 更早的评论
After I run any script that generates multiple figures I know I can close all the figures with:
close all hidden
if it contains also anova results, but if I need to close only this latter type of figure I only found this way to close them:
anovaResultFigures = findall(0,'HandleVisibility','callback');
close(anovaResultFigures);
Is there a better and maybe more specific way to do it because I'm not sure if any other figure have this type of visibility?
2 个评论
采纳的回答
更多回答(1 个)
Chunru
2023-10-26
How about collecting the desired figure handles in an array when creating the figures, such as
h(i) = figure(...);
At the end, just run
close(h)
to close the desired figures?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Analysis of Variance and Covariance 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!