Filter löschen
Filter löschen

MATLAB suddenly closes when running a complex script

26 Ansichten (letzte 30 Tage)
Joel Schelander
Joel Schelander am 9 Apr. 2021
Beantwortet: Jan am 9 Apr. 2021
I made a large script in MATLAB 2019b on my computer. When I try to run it at my institutes computer (2017b) it crashes after a couple of minutes
How can I over come this?
  3 Kommentare
Jan
Jan am 9 Apr. 2021
Please explain, what "crashs" means: Do you get an error message? If so, which one? Is the memory exhausted before?
Joel Schelander
Joel Schelander am 9 Apr. 2021
MATLAB make the sound that theres an error and immediately closes. So I cannot see the error message

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Jan
Jan am 9 Apr. 2021
Without seeing the code it is impossible to suggest a solution. There is no magic "do not crash"-flag, which can be enabled by professionals only.
You have to debug the code. Set some breakpoints to step through the code line by line. If this is too lengthy, try to enable the diary and display all performed commands:
echo(fullfile(tempdir, 'myEcho.txt'));
diary(fullfile(tempdir, 'myDiary.txt'));
% now run the code again
After Matlab has crashed again, check the event log of the operating system also for a new entry.
If you have found out, where the code crashs, insert some code to stop the execution exactly before the crash, e.g.:
if k==17 && b==47196
keyboard; % -> Breakpoint here
end
Then save the variables provided as input for the next step in a MAT file, such that you can examine the reason without the need for the former processing. The next command together with the input data are a useful start point to explain the details here in the forum.

Kategorien

Mehr zu Debugging and Analysis finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by