F01ECF (PDF version)
F01 Chapter Contents
F01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F01ECF

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.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

F01ECF computes the matrix exponential, eA, of a real n by n matrix A.

2  Specification

SUBROUTINE F01ECF ( N, A, LDA, IFAIL)
INTEGER  N, LDA, IFAIL
REAL (KIND=nag_wp)  A(LDA,*)

3  Description

eA is computed using a Padé approximant and the scaling and squaring method described in Higham (2005) and Higham (2008).
If A has a full set of eigenvectors V then A can be factorized as
A = V D V-1 ,
where D is the diagonal matrix whose diagonal elements, di, are the eigenvalues of A. eA is then given by
eA = V eD V-1 ,
where eD is the diagonal matrix whose ith diagonal element is edi.
Note that eA is not computed this way as to do so would, in general, be unstable.

4  References

Higham N J (2005) The scaling and squaring method for the matrix exponential revisited SIAM J. Matrix Anal. Appl. 26(4) 1179–1193
Higham N J (2008) Functions of Matrices: Theory and Computation SIAM, Philadelphia, PA, USA
Moler C B and Van Loan C F (2003) Nineteen dubious ways to compute the exponential of a matrix, twenty-five years later SIAM Rev. 45 3–49

5  Parameters

1:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N0.
2:     A(LDA,*) – REAL (KIND=nag_wp) arrayInput/Output
Note: the second dimension of the array A must be at least N.
On entry: the n by n matrix A.
On exit: the n by n matrix exponential eA.
3:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which F01ECF is called.
Constraint: LDAmax1,N.
4:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. 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 -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL<0 and IFAIL-4
If IFAIL=-i, the ith argument had an illegal value.
IFAIL=-999
Allocation of memory failed. The integer allocatable memory required is N, and the real allocatable memory required is approximately 6×N2.
IFAIL=1
Note: this failure should not occur, and suggests that the routine has been called incorrectly.
The linear equations to be solved for the Padé approximant are singular.
IFAIL=2
Note: this failure should not occur, and suggests that the routine has been called incorrectly.
The linear equations to be solved are nearly singular and the Padé approximant probably has no correct figures.
IFAIL=N+2
eA has been computed using an IEEE double precision Padé approximant, although the arithmetic precision is higher than IEEE double precision.

7  Accuracy

For a normal matrix A (for which ATA=AAT) the computed matrix, eA, is guaranteed to be close to the exact matrix, that is, the method is forward stable. No such guarantee can be given for non-normal matrices. See Section 10.3 of Higham (2008) for details and further discussion.
For discussion of the condition of the matrix exponential see Section 10.2 of Higham (2008).

8  Further Comments

The cost of the algorithm is On3; see Algorithm 10.20 of Higham (2008).
If estimates of the condition number of the matrix exponential are required then F01JAF should be used.
As well as the excellent book cited above, the classic reference for the computation of the matrix exponential is Moler and Van Loan (2003).

9  Example

This example finds the matrix exponential of the matrix
A = 1 2 2 2 3 1 1 2 3 2 1 2 3 3 3 1 .

9.1  Program Text

Program Text (f01ecfe.f90)

9.2  Program Data

Program Data (f01ecfe.d)

9.3  Program Results

Program Results (f01ecfe.r)


F01ECF (PDF version)
F01 Chapter Contents
F01 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012