home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / LANG.DI$ / DBCLEAR.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  1.2 KB  |  31 lines

  1. %DBCLEAR Remove an M-file breakpoint set by the DBSTOP command.
  2. %    The DBCLEAR command removes the breakpoint set by a corresponding
  3. %    DBSTOP command.  There are six forms to this command.  They are:
  4. %
  5. %    DBCLEAR AT lineno IN Mfilename
  6. %    DBCLEAR ALL IN Mfilename
  7. %    DBCLEAR IN Mfilename
  8. %    DBCLEAR ALL
  9. %    DBCLEAR IF ERROR
  10. %    DBCLEAR IF NANINF  or  DBCLEAR IF INFNAN
  11. %
  12. %    where lineno is a line number in M-file function Mfilename.
  13. %
  14. %    The AT, IN and IF keywords are optional.
  15. %
  16. %    The first form removes the breakpoint at line lineno in M-file
  17. %    function Mfilename.  The second form removes all breakpoints in
  18. %    Mfilename.  The third form removes the breakpoint set at the first
  19. %    executable line in Mfilename. The fourth form removes all breakpoints
  20. %    in all M-files.  The fifth form clears the DBSTOP IF ERROR statement,
  21. %    if set.  If a run-time error occurs after this command, MATLAB
  22. %    terminates the current operation and returns to the base workspace.
  23. %    The sixth form clears the DBSTOP on infinities and NaNs.
  24. %
  25. %    See also DBSTEP, DBSTOP, DBCONT, DBTYPE, DBSTACK, DBUP, 
  26. %    DBDOWN, DBSTATUS, and DBQUIT.
  27.  
  28. %    Steve Bangert, 6-25-91. Revised, 1-3-92.
  29. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  30. %    Built-in function.
  31.