フィルターのクリア

Matlab freeze when using a file dialog selection

35 ビュー (過去 30 日間)
Charlie Blackwall
Charlie Blackwall 2017 年 10 月 17 日
コメント済み: Thomas Laubscher 2022 年 12 月 2 日
I'm having a very frustrating problem that I can't seem to solve when using file selection dialogue.
Occaisionaly when I load a file selection dialogue from a button on a GUI (using 'uigetfile'), matlab freezes and can't be recovered. The only solution is to stop the process in windows closing matlab and anything that I was working on. I've also had the same issue when using 'uiputfile'.
The problem is not repeatable and appears to be random when it occurs. It doesn't seem to matter whether I've had matlab open for hours or shortly after opening.
The method that the button callback accesses is as follows, and as you can see I've tried to use some of the tricks already suggested on this community by inserting pause and drawnow. Unfortuantely neither of these has fixed the issue and it still randomly occurs.
%%Function to load existing data dictionary into the tool.
function LoadDD(obj, ~, ~)
% Go to the folder location of most recently accessed simulink
% model
try
NewPath=fileparts(get_param(bdroot, 'FileName'));
if ~strcmp('C:\Program Files\MATLAB\R2015b\toolbox\simulink\blocks\library', NewPath)...
&&~strcmp('C:\Program Files\MATLAB\R2015b\toolbox\stateflow\stateflow', NewPath)
obj.PathName = NewPath;
end
catch
end
drawnow;
pause(0.05); %This is to prevent matlab from hanging
[FileName,obj.PathName] = uigetfile('*.m','Select a model data dictionary', obj.PathName );
drawnow;
pause(0.05);
if FileName ==0
obj.PathName = 'C:\TEAM\PROJECTS\ControlSystemsSVN\Mathworks\';
return
end
% Do other stuff...
Has anyone had any experience with this issue, and found any proper solutions?
I'm using R2015b.
  5 件のコメント
Charlie Blackwall
Charlie Blackwall 2017 年 10 月 18 日
Hi, yes I'm using 64 bit windows, but I've not done anything with Java.
Andrea Carignano
Andrea Carignano 2018 年 10 月 4 日
I have exactly the same problem but unfortunately I could not solve...

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

採用された回答

Andrea Carignano
Andrea Carignano 2018 年 11 月 5 日
Try to use the following command before uigetfile.
com.mathworks.mwswing.MJFileChooserPerPlatform.setUseSwingDialog(1)
Let me know.
  6 件のコメント
Nicholas Demetris Cherouvim
Nicholas Demetris Cherouvim 2021 年 6 月 7 日
It worked for 2019b also. Thanks!
Thomas Laubscher
Thomas Laubscher 2022 年 12 月 2 日
Didn't really help (Matlab 2020b). Only changed the appearance of the getfile dialog

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

その他の回答 (2 件)

Greg
Greg 2017 年 10 月 18 日
I just had a very similar occurrence. In my case, MATLAB was not completely frozen (Editor, documentation still worked), but it was stuck in a "Busy" state for a long time. Turned out my License Manager host server was powered down, but my MATLAB session was still live.
  1 件のコメント
Charlie Blackwall
Charlie Blackwall 2017 年 10 月 18 日
Unfortuantely, this is not the same issue. Matlab is completely stuck, there's no busy indication or anything like that. The whole program has completely frozen and there's no solution other than stopping the process.

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


Yair Altman
Yair Altman 2017 年 10 月 19 日
編集済み: Yair Altman 2017 年 10 月 19 日
The reason and the solution are explained here: http://undocumentedmatlab.com/blog/solving-a-matlab-hang-problem
It seems that you're already using drawnow and pause(), so you sould simply increase the pause amount.
  1 件のコメント
Charlie Blackwall
Charlie Blackwall 2017 年 10 月 19 日
Hi, I've seen this hence what I've put in my code. I've tried using longer pauses, but the problem still randomly occurs. It would be useful if mathworks would fix the problem, rather than us having to put in unreliable work arounds.

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

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by