MATLAB Function Reference
  Go to function:
    Search    Help Desk 
dbclear    See Also

Clear breakpoints

Syntax

Description

dbclear all removes all breakpoints in all M-files, as well as pauses set for error, warning, and naninf/infnan using dbstop.

dbclear all in mfile removes breakpoints in mfile.

dbclear in mfile removes the breakpoint set at the first executable line in mfile.

dbclear in mfile at lineno removes the breakpoint set at the line number lineno in mfile.

dbclear in mfile at subfun removes the breakpoint set at the subfunction subfun in mfile.

dbclear if error removes the pause set using dbstop if error.

dbclear if warning removes the pause set using dbstop if warning.

dbclear if naninf removes the pause set using dbstop if naninf.

dbclear if infnan removes the pause set using dbstop if infnan.

Remarks

The at, in, and if keywords, familiar to users of the UNIX debugger dbx, are optional.

See Also

dbcont, dbdown, dbquit, dbstack, dbstatus, dbstep, dbstop, dbtype, dbup, partialpath



[ Previous | Help Desk | Next ]