Hello Kyle,
The exit code -1073741819 (or 0xC0000005 in hexadecimal) typically indicates an access violation error, which means that MATLAB attempted to access memory that it was not allowed to. Here are a few steps that you can take to resolve this issue:
- When MATLAB crashes, it often generates a crash dump file ('.dmp' or '.mdmp' on Windows) and a log file ('matlab_crash_dump.log'). Check the 'bin' directory of your MATLAB installation or the current working directory for these files.
- MATLAB has built-in diagnostic tools that can help identify issues. For example, you can use 'dbstop if error' to enter debug mode when an error occurs.
> dbstop if error
- Update MATLAB to the latest version which might resolve the error.
I hope this helps!
Thank you.