Close all figures in 2014b
1 次查看(过去 30 天)
显示 更早的评论
Pre 2014b, all figures can be closed with
close all
Doesn't seem to work with 2014b. Can someone help?
2 个评论
采纳的回答
Sean de Wolski
2014-10-8
编辑:Sean de Wolski
2014-10-8
Perhaps you have a hidden figure (i.e. a figure whose 'HandleVisibility' is set to 'off')
This could happen in R2014a and before too, but a figure with this setting is not affected by close all. You need close all force to close these ones:
figure % Can be closed
figure('HandleVisibility','off'); % cannot be
close all % close handle visible ones
close all force % close all of them
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!