LinearAlgebra
MatrixExponential
determine the matrix exponential exp(A) for a Matrix A
Calling Sequence
Parameters
Description
Examples
MatrixExponential(A, t, options)
A
-
square Matrix
t
(optional) scalar parameter
options
(optional); constructor options for the result object
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. This is an example of a generalized Matrix function, F(A).
If the scalar parameter t is not specified, the first indeterminate (if any) in the Matrix is removed and used as a parameter.
The options option provides additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix constructor that builds the result. These options may also be provided in the form outputoptions=[...], where [...] represents a Maple list. If a constructor option is provided in both the calling sequence directly and in an outputoptions option, the latter takes precedence (regardless of the order).
This function is part of the LinearAlgebra package, and so it can be used in the form MatrixExponential(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[MatrixExponential](..).
with⁡LinearAlgebra:
A≔Matrix⁡−13,−10,21,16
A≔−13−102116
MatrixExponential⁡A
15⁢ⅇ−14⁢ⅇ2−10⁢ⅇ2+10⁢ⅇ21⁢ⅇ2−21⁢ⅇ−14⁢ⅇ+15⁢ⅇ2
MatrixExponential⁡A,x
15⁢ⅇx−14⁢ⅇ2⁢x−10⁢ⅇ2⁢x+10⁢ⅇx21⁢ⅇ2⁢x−21⁢ⅇx−14⁢ⅇx+15⁢ⅇ2⁢x
MatrixExponential⁡A,−x
15⁢ⅇ−x−14⁢ⅇ−2⁢x−10⁢ⅇ−2⁢x+10⁢ⅇ−x21⁢ⅇ−2⁢x−21⁢ⅇ−x−14⁢ⅇ−x+15⁢ⅇ−2⁢x
A≔Matrix⁡−3.0,−1.0,2.0,6.0
A≔−3.0−1.02.06.0
MatrixExponential⁡A,readonly
−8.50653632644480−37.583962268615775.1679245372313329.749124091096
See Also
LinearAlgebra[MatrixFunction]
Matrix
Vector
Download Help Document