Language Reference

REMOVE Statement

removes matrices from storage

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

The inputs 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 14, "Storage Features," and also the descriptions of the LOAD, STORE, RESET, and SHOW statements for related information.

Previous Page | Next Page | Top of Page