Storage Features


Removing Matrices and Modules

You can remove modules or matrices from the catalog by using the REMOVE command. The REMOVE command has the same form as the LOAD command. Some examples of valid REMOVE statements are as follows:

   remove a b c;                     /* remove matrices A, B, and C */
   remove module=mymod1;                   /* remove module MYMOD1  */
   remove module=(mymod1 mymod2) a; /* remove modules and matrices  */

The special operand _ALL_ can be used to remove all matrices or modules, or both. For example, if you want to remove all matrices, use the following statement:

   remove _all_;

If you want to remove everything from storage, use the REMOVE command by itself, as follows:

   remove;