REMOVE Statement

REMOVE <MODULE=(module-list)> <matrix-list> ;

The REMOVE statement removes modules and matrices from storage.

The arguments to the REMOVE statement are as follows:

module-list

specifies a module or modules to remove from storage.

matrix-list

specifies a matrix or matrices to remove from storage.

The REMOVE statement removes matrices or modules or both from the current library storage. For example, the following statement removes the three modules A, B, and C and the matrix X:

   remove module=(A B C) X;

The special operand _ALL_ can be used to remove all matrices or all modules or both. For example, the following statement removes everything:

   remove _all_ module=_all_;

See Chapter 17, Storage Features, and also the descriptions of the LOAD, STORE, RESET, and SHOW statements for related information.