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

  1. %DBSTEP    Execute one or more MATLAB lines of code when in MATLAB debug mode.
  2. %    The DBSTEP command allows the user to execute one or more lines of
  3. %    executable MATLAB code and upon their completion revert back to the
  4. %    debug mode.  There are three forms to this command.  They are:
  5. %
  6. %    DBSTEP
  7. %    DBSTEP nlines
  8. %    DBSTEP IN
  9. %
  10. %    where nlines is the number of executable lines to step.
  11. %    The first form causes the execution of the next executable line.
  12. %    The second form causes the execution of the next nlines executable
  13. %    lines.  When the next executable line is a call to another M-file
  14. %    function, the third form allows the user to step to the first 
  15. %       executable line in the called M-file function.
  16. %
  17. %    See also DBCONT, DBSTOP, DBCLEAR, DBTYPE, DBSTACK, DBUP, DBDOWN,
  18. %    and DBSTATUS.
  19.  
  20. %    Steve Bangert, 6-25-91.
  21. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  22. %    Built-in function.
  23.