Function: math[mreadlib] - multiple readlib function

Calling Sequence:

mreadlib(f);

Parameters:

f - a sequence of Library function names

Description:

mreadlib facilitates reading two or more Maple Library functions. readlib itself accepts only one function to be read from the Maple Library.

If only one function name is given, mreadlib works like readlib. You may specify two or more function names to be read with one call to mreadlib.

If you specify a function name that does not exist, a message is displayed but all the function names are processed thereafter. Thus an invalid function name is simply ignored.

Note: Contrary to readlib, mreadlib in general does not accept paths and names of FILES to be read (see ?readlib).

The return is/are the value(s) assigned to the arguments given.

A more general loading function is math/load.

Examples:

> with(math):

> mreadlib(discont, iscont, shake, evalr);

[Maple Math]

> mreadlib(idonotexist, iscont, discont);

Warning: could not find `idonotexist` in the library

[Maple Math]

> mreadlib(isolate);

[Maple Math]

See Also:

readlib , read , save .

Version History:

Version 1.0 - May 13, 1997