MATLAB crashes with big mfile
1 回表示 (過去 30 日間)
古いコメントを表示
Hi all,
Has anyone had experience with MATLAB crashing with a large mfile in the current directory?
Specifically I have a 2MB mfile with an optimization problem description it, generated from a 3rd party solver. However when I navigate to the directory containing this file in MATLAB, it crashes MATLAB! I did not even get a chance to open it...
The file looks ok to me, and the interface has had no problem on smaller problems.
The file has has the following form:
% Objective
fun = @(x)2164*x(1)+2046*x(2)....
% Bounds
lb = [-Inf,-Inf,-Inf,...
ub = [Inf,Inf,Inf,Inf,....
Where the problem has 87482 variables, all listed in the linear objective fun, and in vectors lb and ub.
Regards,
Jonathan
0 件のコメント
回答 (4 件)
Image Analyst
2012 年 2 月 18 日
I think the size and contents of the m-file have no bearing on the problem since you said that you never even got to open it because it crashed as soon as you set the current folder to the folder where that file lives. So in that case, I'd call the Mathworks. Or maybe do some sort of file system integrity check to check for a corrupted file system on your computer.
2 件のコメント
Ken Atwell
2012 年 2 月 18 日
MATLAB does scan a folder when you navigate ("cd") to it, so it is not out the question to see a behavior (bug) triggered by "merely" changing folders.
I would try completely closing the Current Folder window and then change folders the "old fashioned" way -- using "cd" in the Command Window. Does that help matters?
In either case, please do report this to MathWorks support.
Ahmad
2012 年 6 月 5 日
I'm facing a similar problem. An m-file I use to postprocess simulatuion results consists of ~8500 lines and is ~350 KB in size. It does not crash, it rather stalls if I edit the file, then resumes after 3-4 secs. This does not happen with smaller files. It's just like you're exceeding a certain pre-set text buffer.
3 件のコメント
Image Analyst
2012 年 6 月 5 日
But you said that you never even got to try to open it in the editor. You said that it crashed when you just opened the folder where the file lived. Now you apparently contradict that and say you have an "editor thread" indicating that you DID actually try to open it, whereas before you said that you "did not even get a chance to open it" because it crashed when you opened the folder.
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!