Previous Page | Next Page

Language Reference

STORAGE Function

STORAGE( ) ;

The STORAGE function returns a matrix of the names of all of the matrices and modules in the current storage library. The result is a character vector with each matrix or module name occupying a row. Matrices are listed before modules. The SHOW STORAGE command separately lists all of the modules and matrices in storage.

For example, the following statements reset the current library storage to MYLIB and then print a list of the modules and matrices in storage:

   reset storage="MYLIB";

Issue the following command to get the resulting matrix:

   a=storage();
   print a;
Previous Page | Next Page | Top of Page