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

Online Help

All Products    Maple    MapleSim


MapleTA[Builtin]

  

maple

  

parse and execute a Maple command

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

maple(command)

Parameters

command

-

string

Description

• 

The maple command parses and executes the given command string.

• 

If the given command string contains multiple maple statement, only the result of the last statement will be returned.

• 

The maple command interacts with the global environment.  So, if x is assigned in your current session, then executing maple("f(x)") will compute a result using the current setting of x.  This is not a concern when running code inside Maple T.A., as each maple computation starts with a clean environment with nothing assigned.

Examples

MapleTA:-Builtin:-mapleithprime(12)

37

(1)

MapleTA:-Builtin:-maplediff(sin(x)*x,x)

cosxx+sinx

(2)

MapleTA:-Builtin:-maplea := 2; print(a); a^2

2

4

(3)

Compatibility

• 

The MapleTA[Builtin][maple] command was introduced in Maple 18.

• 

For more information on Maple 18 changes, see Updates in Maple 18.

See Also

MapleTA

parse