Main Content

dbcont

Resume execution

Syntax

Description

example

dbcont resumes execution of a MATLAB® code file after pausing. Execution continues until another breakpoint is encountered, a pause condition is met, an error occurs, or execution completes successfully.

Note

If you want to edit a file as a result of debugging, then it is a good practice to first quit debugging. Otherwise, you can get unexpected results.

Examples

collapse all

Resume the execution of a program while debugging using the dbcont command.

Create a file, buggy.m, that contains these statements.

function z = buggy(x)
n = length(x);
z = (1:n)./x;

Add a breakpoint at line 2 and run the code. MATLAB pauses execution at the breakpoint.

dbstop in buggy at 2
buggy(5)

Run the dbcont command to continue execution to the end of the program and end debugging.

dbcont

Version History

Introduced before R2006a