dbstatus
b = dbstatus()
| Parameter | Description |
|---|---|
| b | Structure array listing breakpoints currently in effect. |
dbstatus lists all breakpoints currently set.
Assigning the output to a variable b allows you to save and restore breakpoints later using dbstop(b).
The output structure array b contains one element per file with breakpoints. Each element contains:
dbstop in myfile
dbstatus
b = dbstatus();
save saved_breakpoints b
dbclear all
load saved_breakpoints
dbstop(b)
| Version | Description |
|---|---|
| 1.16.0 | initial version |