packages command - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

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