packages command - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Programming : Packages : packages command

packages

return the list of bound packages

 

Calling Sequence

Description

Examples

Calling Sequence

packages()

Description

• 

The packages() calling sequence returns a list of the packages bound using the with command. The packages are listed in the order that they were bound.

Examples

withStringTools:withLinearAlgebra:withGroupTheory:

packages

StringTools,LinearAlgebra,GroupTheory

(1)

Packages can be unbound using the unwith command.

unwithLinearAlgebra:

packages

StringTools,GroupTheory

(2)

See Also

index[package]

unwith

Using Packages

with