Execute next executable line from current breakpoint
dbstep
executes the next executable line
of the current file during debugging, skipping any breakpoints set
in functions called by the current line.
dbstep in
steps to the next executable
line. If that line contains a call to another MATLAB® code file
function, execution steps to the first executable line of the called
function. If there is no call to a MATLAB code file on that line, dbstep
in
is the same as dbstep
.
dbstep out
runs the rest of the current
function and stops just after leaving the function. MATLAB pauses
execution at any breakpoint it encounters.