How to close only anova figures

조회 수: 5 (최근 30일)
Valerio Romano
Valerio Romano 2023년 10월 26일
댓글: Valerio Romano 2023년 10월 31일
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
Walter Roberson
Walter Roberson 2023년 10월 26일
Which function or app are you using to create the plots?
Valerio Romano
Valerio Romano 2023년 10월 29일
I'm using anovan and anova functions. Those figures have different properties from plotting figures, that's why I was wondering if there is a way to close only those.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2023년 10월 29일
close(findall(0, '-depth', 1, 'Type', 'figure', 'Name', 'N-Way ANOVA'))
The anova function does not produce any graphics, so there are no graphics to close for it.
  댓글 수: 1
Valerio Romano
Valerio Romano 2023년 10월 31일
Thanks, that's exactly what I was searching for.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Chunru
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?
  댓글 수: 1
Valerio Romano
Valerio Romano 2023년 10월 29일
It would be the same as manually close them.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile 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!

Translated by