Language Reference

STORE Statement

stores matrices and modules in library storage

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

The inputs to the STORE statement are as follows.
module-list
is a list of module names.

matrix-list
is a list of matrix names.

The STORE statement stores matrices or modules in the storage library. For example, the following statement stores the modules A, B, and C and the matrix X:

  
    store module=(A B C) X;
 
The special operand _ALL_ can be used to store all matrices or all modules. For example, the following statement stores all matrices and modules:
  
    store _all_ module=_all_;
 
The storage library can be specified by using the RESET storage command and defaults to WORK.IMLSTOR. The SHOW storage command lists the current contents of the storage library. The following statement stores all matrices:
  
    store;
 
See Chapter 14, "Storage Features," and also the descriptions of the LOAD, REMOVE, RESET, and SHOW statements for related information.

Previous Page | Next Page | Top of Page