MATLAB: Breakpoints locations settings for a huge project

2017bbreakpointsMATLAB

Is there a way in settings to enable MATLAB to save breakpoints locations? I work w/ a very complex and huge file w/ many nested loops. I would like MATLAB to show me the breakpoints even if restart the application.

Best Answer

Looking in the doc for the dbstop function, it describe a method to do this:
b = dbstatus('-completenames');
dbstop(b);