Evaluate the exponential of a dense matrix using Pade approximations.
E = expm(A, order)
E
: real
or complex
rank-2 array with .
A
: real
or complex
matrix that needs to be exponentiated.
order
(optional) : Order of the Pade approximation. By default order = 10
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=sp), | intent(in) | :: | A(:,:) |
Matrix to be exponentiated. |
||
integer, | intent(in), | optional | :: | order |
Order of the Pade approximation. |
Output matrix E = exp(tA).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=dp), | intent(in) | :: | A(:,:) |
Matrix to be exponentiated. |
||
integer, | intent(in), | optional | :: | order |
Order of the Pade approximation. |
Output matrix E = exp(tA).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
complex(kind=sp), | intent(in) | :: | A(:,:) |
Matrix to be exponentiated. |
||
integer, | intent(in), | optional | :: | order |
Order of the Pade approximation. |
Output matrix E = exp(tA).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
complex(kind=dp), | intent(in) | :: | A(:,:) |
Matrix to be exponentiated. |
||
integer, | intent(in), | optional | :: | order |
Order of the Pade approximation. |
Output matrix E = exp(tA).