MatrixExponential - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

MatrixExponential

  

determine the matrix exponential

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

MatrixExponential(A, t, options)

Parameters

A

-

square Matrix

t

-

(optional) scalar parameter

options

-

(optional) parameters; for a complete list, see LinearAlgebra[MatrixExponential]

Description

• 

The MatrixExponential(A, t) command returns the Matrix exp(A*t) = I + A*t + 1/2!*A^2*t^2 + ... where I is the identity Matrix.

• 

If the scalar parameter t is not specified, the first indeterminate (if any) in the Matrix is removed and used as a parameter.

Examples

> 

with⁡Student:-LinearAlgebra:

> 

A≔Matrix⁡−13,−10,21,16

A≔−13−102116

(1)
> 

MatrixExponential⁡A

15⁢ⅇ−14⁢ⅇ2−10⁢ⅇ2+10⁢ⅇ21⁢ⅇ2−21⁢ⅇ−14⁢ⅇ+15⁢ⅇ2

(2)
> 

MatrixExponential⁡A,x

15⁢ⅇx−14⁢ⅇ2⁢x−10⁢ⅇ2⁢x+10⁢ⅇx21⁢ⅇ2⁢x−21⁢ⅇx−14⁢ⅇx+15⁢ⅇ2⁢x

(3)
> 

MatrixExponential⁡A,−x

15⁢ⅇ−x−14⁢ⅇ−2⁢x−10⁢ⅇ−2⁢x+10⁢ⅇ−x21⁢ⅇ−2⁢x−21⁢ⅇ−x−14⁢ⅇ−x+15⁢ⅇ−2⁢x

(4)

Compatibility

• 

The Student[LinearAlgebra][MatrixExponential] command was introduced in Maple 2020.

• 

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

See Also

Student[LinearAlgebra]