필터 지우기
필터 지우기

how can I close all volshow windows

조회 수: 42 (최근 30일)
Michael
Michael 2023년 6월 16일
댓글: Michael 2023년 6월 16일
I have noticed that "close all" does not close volshow windows. How can I close all volshow windows?

채택된 답변

Ronit
Ronit 2023년 6월 16일
Hi,
To close all volshow windows in MATLAB, you can use the close function with the handles to the volshow windows. Here's how you can modify the close all command to include volshow windows:
close all;
handles = findall(groot, 'Type', 'figure', 'Tag', 'volshow');
close(handles);
The first command close all closes all open figures in MATLAB. The second command uses the findall function to find all figures with the volshow tag, which is used by the volshow function to identify its windows. The close function is then called with the handles to these figures to close them.
Hope this helps!
  댓글 수: 1
Michael
Michael 2023년 6월 16일
Very nice Solution. Thanks Ronit!

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

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by