Using findjobj in R2013a

3 ビュー (過去 30 日間)
Daniel Shub
Daniel Shub 2013 年 9 月 27 日
コメント済み: Daniel Shub 2013 年 10 月 16 日
I am trying to use Yair's FEX:findjobj in R2013a on Linux to basically do what he did in his blog post
desktop = com.mathworks.mde.desk.MLDesktop.getInstance;
jEditor = desktop.getGroupContainer('Editor').getTopLevelAncestor;
jEditor.findjobj
This causes MATLAB to become unresponsive and basically hang. I unfortunately don't have any other versions of MATLAB currently. Can anyone reproduce this?

採用された回答

Daniel Shub
Daniel Shub 2013 年 10 月 16 日
I did a little profiling and found the problem. The findobj function calls home to the FEX and checks for a newer version in the checkVersion subfunction. On my system this fails because urlread times out (which takes a long time). The checkVersion subfunction catches the error and then discards it, which makes it tough to figure out what is going on. Using the undocumented feature of findobj
addpref('FindJObj','dontCheckNewerVersion', true)
stops from calling home and avoids the problems. I wonder if an error on trying to check the newer version should automatically set the preference to not check for updates.

その他の回答 (2 件)

per isakson
per isakson 2013 年 9 月 27 日
編集済み: per isakson 2013 年 9 月 27 日
It seems to work fine here: R2013a, 64bit, Win7
>> desktop = com.mathworks.mde.desk.MLDesktop.getInstance;
jEditor = desktop.getGroupContainer('Editor').getTopLevelAncestor;
jEditor.findjobj
ans =
handle: 1-by-1620
>> version
ans =
8.1.0.604 (R2013a)
and the GUI is responsive
  1 件のコメント
Daniel Shub
Daniel Shub 2013 年 9 月 27 日
Thanks. I wonder if it is Linux or my machine. Will have to keep searching.

サインインしてコメントする。


Yair Altman
Yair Altman 2013 年 10 月 5 日
You only need to use findjobj without an output (result assignment) value if you want to see an interactive GUI display of all the objects in your analyzed object (in this case Desktop). If your Desktop contains numerous panels/windows/docked figures etc., then there might be so many descendant objects that it would take a long time (and large amounts of memory) to process, which might explain what you see.
If you only need findjobj to get the underlying reference of something, then assign a result (e.g., something=findjobj(...); ) and this should solve the issue. If you want to see the interactive GUI, then consider reducing your Desktop's complexity by closing some panels, or maybe start Matlab when it has access to more physical memory (to prevent virtual memory usage and thrashing).
  3 件のコメント
Yair Altman
Yair Altman 2013 年 10 月 15 日
Try setting the desktop layout to the default and retest. Perhaps findjobj gets stuck in some endless loop if id can't find one of the standard Desktop components. If this is the case, you can start peeling off Desktop panels one by one until you get to the culprit.
Daniel Shub
Daniel Shub 2013 年 10 月 16 日
The hang happens in checkVersion. See my answer.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by