NAG Library Routine Document
F01GAF
Note: before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.
1 Purpose
F01GAF computes the action of the matrix exponential , on the matrix , where is a real by matrix, is a real by matrix and is a real scalar.
2 Specification
INTEGER
N, M, LDA, LDB, IFAIL
REAL (KIND=nag_wp)
A(LDA,*), B(LDB,*), T
3 Description
is computed using the algorithm described in
Al–Mohy and Higham (2011) which uses a truncated Taylor series to compute the product
without explicitly forming
.
4 References
Al–Mohy A H and Higham N J (2011) Computing the action of the matrix exponential, with an application to exponential integrators SIAM J. Sci. Statist. Comput. 33(2) 488-511
Higham N J (2008) Functions of Matrices: Theory and Computation SIAM, Philadelphia, PA, USA
5 Parameters
- 1: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 2: M – INTEGERInput
On entry: , the number of columns of the matrix .
Constraint:
.
- 3: A(LDA,) – REAL (KIND=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
A
must be at least
.
On entry: the by matrix .
On exit: is overwritten during the computation.
- 4: LDA – INTEGERInput
On entry: the first dimension of the array
A as declared in the (sub)program from which F01GAF is called.
Constraint:
.
- 5: B(LDB,) – REAL (KIND=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
B
must be at least
.
On entry: the by matrix .
On exit: the by matrix .
- 6: LDB – INTEGERInput
On entry: the first dimension of the array
B as declared in the (sub)program from which F01GAF is called.
Constraint:
.
- 7: T – REAL (KIND=nag_wp)Input
On entry: the scalar .
- 8: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
-
Note: this failure should not occur, and suggests that the routine has been called incorrectly. An unexpected internal error occurred when trying to balance the matrix .
-
An unexpected internal error has occurred. Please contact
NAG.
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, and .
Constraint: .
-
On entry, and .
Constraint: .
-
Allocation of memory failed.
7 Accuracy
For a symmetric matrix
(for which
) the computed matrix
is guaranteed to be close to the exact matrix, that is, the method is forward stable. No such guarantee can be given for non-symmetric matrices. See Section 4 of
Al–Mohy and Higham (2011) for details and further discussion.
The matrix
could be computed by explicitly forming
using
F01ECF and multiplying
by the result. However, experiments show that it is usually both more accurate and quicker to use F01GAF.
The cost of the algorithm is . The precise cost depends on since a combination of balancing, shifting and scaling is used prior to the Taylor series evaluation.
Approximately of real allocatable memory is required by F01GAF.
F01HAF can be used to compute
for complex
,
, and
.
F01GBF provides an implementation of the algorithm with a reverse communication interface, which returns control to the user when matrix multiplications are required. This should be used if
is large and sparse.
9 Example
This example computes
, where
and
9.1 Program Text
Program Text (f01gafe.f90)
9.2 Program Data
Program Data (f01gafe.d)
9.3 Program Results
Program Results (f01gafe.r)