Close (all) Variable Editor windows?

조회 수: 81 (최근 30일)
jkr
jkr 2017년 6월 20일
댓글: Sanjeev Chaubey 2022년 4월 22일
During development I often open many figures (plotting variables of interest) and many Variable Editor windows, often digging several layers deep into structs, generating lots of Variable Editor windows. When I am ready to move on to some next step, I can easily close all the figures with 'close all'. But I cannot find a way to close all the Variable Editor windows (so typically, I close each, of many, by clicking on the red dot (in OSX)). Not impossible, but tedious. There seems to be no complement to openvar. Am I missing something?

채택된 답변

Jan
Jan 2017년 6월 20일
편집: Jan 2017년 6월 20일
This closes all docked and undocked ArrayEditors:
desktop = com.mathworks.mde.desk.MLDesktop.getInstance;
Titles = desktop.getClientTitles;
for k = 1:numel(Titles)
Client = desktop.getClient(Titles(k));
if ~isempty(Client) & ...
strcmp(char(Client.getClass.getName), 'com.mathworks.mde.array.ArrayEditor')
Client.close();
end
end
This is inspired by the link posted by Image Analyst.
  댓글 수: 5
Michele Magni
Michele Magni 2021년 12월 8일
Beautiful.
Sanjeev Chaubey
Sanjeev Chaubey 2022년 4월 22일
too smart, you are awesome !

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

추가 답변 (1개)

Image Analyst
Image Analyst 2017년 6월 20일
  댓글 수: 2
jkr
jkr 2017년 6월 20일
I didn't see how this helps. It addresses a different problem.
On the other hand, I've found something simple that works for me. Simply dock the Variable Editor. It is then easy to open bunches of variables, and close them all at once, by closing the Variable Editor tab. I had been opening each variable, individually, undocked. I can still undock a variable for particularly close inspection. I have to close such a window separately, but all the parents I had to wade through to reach the data of interest remain docked, and easily closed with a click.
Image Analyst
Image Analyst 2017년 6월 21일
It was not intended to be a complete solution, though I can see how you might have thought so. It was intended to be a lead to figure out how you can do it. Fortunately, Jan got the hint and figured it out for you. I knew there was nothing in base MATLAB to do what you wanted and that it had to be an undocumented thing. For these kinds of special, tricky things, we always go to Yair Altman's undocumented MATLAB site. If Yair doesn't know how to do it, then it just can't be done.
You can also "Vote" for Jan's answer to give him more reputation points (like I've done).

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

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by