Creating Shortcuts to Library Objects

You can make the objects in a library more easily accessible by using libShortcut() to create shortcuts to them. This creates a variable group in the current problem that contains references to all the objects in the specified library document. You can choose to include or exclude the private library objects.

For example, suppose the library document linalg contains functions named clearmat, cofactor, gausstep, help, inversestep, kernelbasis, rank, and simultstep. Executing libShortcut(“linalg”,“la”) would create a variable group containing the following members:

la.clearmat
la.cofactor
la.gausstep
la.help
la.inversestep
la.kernelbasis
la.rank
la.simultstep

You can refer to those library objects from within the current problem by typing their variable names or by selecting them from the Variables menu.

For more details about using libShortcut(), see the Reference Guide.