How do I locate the crash dump files generated by MATLAB?

520 views (last 30 days)
MATLAB encountered a crash. How do I locate the crash log files on my computer. 

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 6 Aug 2024
Edited: MathWorks Support Team on 6 Aug 2024
When MATLAB crashes, up to three log files may be generated with the following names:
matlab_crash_dump.XXXX java.log.XXXX hs_error_pidXXXX.log
The filenames will not have XXXX in them, but rather a number representing the process ID. For example, you might see crash dumps named "matlab_crash_dump.3944," "java.log.3944," and "hs_error_pid3944". The location of the crash dump files depends on the operating system used:
 
Windows
On Windows, these files are located in the folder where the operating system stores temporary files. To open your temp directory, enter the following into the search field in the Taskbar, the Start Menu, or Windows Explorer:
%temp%
Or enter the following command in the MATLAB command window:
>> cd(tempdir)
Or manually navigate to:
C:\Users\%username%\AppData\Local\Temp

 

Linux
On Linux, crash dumps are saved to your home folder. Type "cd ~" or "cd /home/$USER/" to navigate to your home folder.

 

Mac
On Mac, crash dumps are saved to your home folder. From the Finder, click the "Go" menu and select "Home" to open your Home folder.
Additional notes:
1) You can use the following MATLAB File Exchange submission to extract the logs MATLAB generates:
extractCrashLogs(nD​ays,logDir)
2) If MATLAB is started with the '-logfile' option, a separate crash file is not created. Instead, the crash information is written to the end of the log file specified by the '-logfile' option.
  1 Comment
Qu Cao
Qu Cao on 26 Oct 2016
Edited: Qu Cao on 26 Oct 2016
On windows, the path can be C:\Users\$YourName$\AppData\Local\Temp

Sign in to comment.

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

No tags entered yet.

Products

Community Treasure Hunt

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

Start Hunting!