Language Reference
LOAD Statement
LOAD <MODULE=(module-list)> <matrix-list> ;
This statement is supported by the IML procedure and the iml action.
The LOAD statement loads modules and matrix values from the current library storage into the current workspace.
The arguments to the LOAD statement are as follows:
- module-list
is a list of modules.
- matrix-list
is a list of matrices.
For example, to load three modules A, B, and C and one matrix X, use the following statement:
load module=(A B C) X;
The special operand _ALL_ can be used to load all matrices or all modules. For example, if you want to load all matrices, use the following statement:
load _all_;
If you want to load all modules, use the following statement:
load module=_all_;
To load all matrices and modules stored in the library storage, you can enter the LOAD command without any arguments, as follows:
load;
The storage library can be specified by using a RESET STORAGE command. The default library is Work.Imlstor. For more information, see Chapter 18 and the descriptions of the STORE, REMOVE, RESET, and SHOW statements.