LibraryTools
Save
save variables to a library
Calling Sequence
Parameters
Description
Examples
Save( name1, name2, ..., archive )
name1, name2, ...
-
name; Maple variables to save
archive
(optional) string; Maple library
The Save( name1, name2,... ) calling sequence adds the variables name1, name2,... to a library.
If archive is specified, then the variables are added to the corresponding library. If it is not specified, then they are saved to the library specified by savelibname.
If archive is a directory, Maple assumes the default library name, maple.mla. Otherwise, archive specifies the path and library name.
The variables are added using the savelib command. The indexname generated for a variable "namei" is "namei.m". Indexnames are of type string.
If archive is not specified and savelibname does not specify a library, an error is generated.
If archive is specified but no corresponding library exists, it is automatically created.
with⁡LibraryTools:
savelibname≔cat⁡kernelopts⁡mapledir,/lib
a≔10:
Save⁡a
b≔11:
c≔12:
Save⁡b,c
d≔12:
e≔13:
LibLocation≔cat⁡kernelopts⁡mapledir,/altlib
Save⁡d,e,LibLocation
See Also
ContextMenu[Save]
LibraryTools[AddFromDirectory]
LibraryTools[BuildFromDirectory]
LibraryTools[Delete]
LibraryTools[UpdateFromDirectory]
march
save
savelib
Download Help Document