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

  1. %CLEAR    Clear various quantities from the workspace.
  2. %    CLEAR removes all variables from the workspace.
  3. %    CLEAR VARIABLES does the same thing.
  4. %    CLEAR X removes variable or function X from the workspace.
  5. %    CLEAR FUNCTIONS removes all compiled M-functions.
  6. %    CLEAR MEX removes all links to MEX-files.
  7. %    CLEAR ALL removes all variables, functions and MEX links.
  8. %
  9. %    If X is global, CLEAR X removes X from the current workspace,
  10. %    but leaves it accessible to any functions declaring it global.
  11. %    CLEAR GLOBAL X completely removes the global variable X.
  12. %    CLEAR GLOBAL removes all global variables.
  13.  
  14. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  15. %    Built-in function.
  16.