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

  1. % Language constructs and debugging.
  2. %
  3. % MATLAB as a programming language.
  4. %   script      - About MATLAB scripts and M-files.
  5. %   function    - Add new function.
  6. %   eval        - Execute string with MATLAB expression.
  7. %   feval       - Execute function specified by string.
  8. %   global      - Define global variable.
  9. %   nargchk     - Validate number of input arguments.
  10. %   lasterr     - Last error message.
  11. %
  12. % Control flow.
  13. %   if          - Conditionally execute statements.
  14. %   else        - Used with IF.
  15. %   elseif      - Used with IF.
  16. %   end         - Terminate the scope of FOR, WHILE and IF statements.
  17. %   for         - Repeat statements a specific number of times.
  18. %   while       - Repeat statements an indefinite number of times.
  19. %   break       - Terminate execution of loop.
  20. %   return      - Return to invoking function.
  21. %   error       - Display message and abort function.
  22. %
  23. % Interactive input.
  24. %   input       - Prompt for user input. 
  25. %   keyboard    - Invoke keyboard as if it were a Script-file.
  26. %   menu        - Generate menu of choices for user input.
  27. %   pause       - Wait for user response.
  28. %   uimenu      - Create user interface menu.
  29. %   uicontrol   - Create user interface control.
  30. %
  31. % Debugging commands.
  32. %   dbstop     - Set breakpoint.
  33. %   dbclear    - Remove breakpoint.
  34. %   dbcont     - Resume execution.
  35. %   dbdown     - Change local workspace context.
  36. %   dbstack    - List who called whom.
  37. %   dbstatus   - List all breakpoints.
  38. %   dbstep     - Execute one or more lines.
  39. %   dbtype     - List M-file with line numbers.
  40. %   dbup       - Change local workspace context.
  41. %   dbquit     - Quit debug mode.
  42.  
  43. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  44.