| MATLAB Function Reference | Search  Help Desk |
| dbclear | See Also |
Syntax
dbclear all dbclear all in mfile dbclear in mfile dbclear in mfile at lineno dbclear in mfile at subfun dbclear if error dbclear if warning dbclear if naninf dbclear if infnan
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
Theat, 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