Storing Modules and Matrices (IML)

Contents Index


Modules and matrices can be stored on disk and reloaded for use in later IML sessions.

First, use the reset storage=name; command to make name the current storage catalog. If permanent disk storage is desired, name should be a two level name. Only one IML storage catalog can be active at a time. The default catalog is SASUSER.IMLSTOR which is a temporary catalog.

The command

store  module=(add, subtract) a b c;

stores the modules add and subtract in the catalog along with the matrices a, b, and c. The word _all_ can be used to store either all modules and/or all matrices. The simple form store; also stores all modules and matrices.

The command

load module=(add, subtract) a b c;

reloads the modules add and subtract and also the matrices a, b, and c for use in the current session. The word _all_ can be used with load in the same way it is used with store. The simple form load; loads all modules and matrices from the current catalog.

The remove statement is used in the same way to remove modules and/or matrices from a catalog.

The command show storage; lists the modules and matrices that have been stored in the current catalog.


Contents Index

Copyright © 1997 by Jerry Alan Veeh. All rights reserved.