nag_matop_complex_gen_matrix_actexp (f01hac) (PDF version)
f01 Chapter Contents
f01 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_matop_complex_gen_matrix_actexp (f01hac)

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_matop_complex_gen_matrix_actexp (f01hac) computes the action of the matrix exponential etA, on the matrix B, where A is a complex n by n matrix, B is a complex n by m matrix and t is a complex scalar.

2  Specification

#include <nag.h>
#include <nagf01.h>
void  nag_matop_complex_gen_matrix_actexp (Integer n, Integer m, Complex a[], Integer pda, Complex b[], Integer pdb, Complex t, NagError *fail)

3  Description

etAB is computed using the algorithm described in Al–Mohy and Higham (2011) which uses a truncated Taylor series to compute the product etAB without explicitly forming etA.

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  Arguments

1:     nIntegerInput
On entry: n, the order of the matrix A.
Constraint: n0.
2:     mIntegerInput
On entry: m, the number of columns of the matrix B.
Constraint: m0.
3:     a[dim]ComplexInput/Output
Note: the dimension, dim, of the array a must be at least pda×n.
The i,jth element of the matrix A is stored in a[j-1×pda+i-1].
On entry: the n by n matrix A.
On exit: A is overwritten during the computation.
4:     pdaIntegerInput
On entry: the stride separating matrix row elements in the array a.
Constraint: pdan.
5:     b[dim]ComplexInput/Output
Note: the dimension, dim, of the array b must be at least pdb×m.
The i,jth element of the matrix B is stored in b[j-1×pdb+i-1].
On entry: the n by m matrix B.
On exit: the n by m matrix etAB.
6:     pdbIntegerInput
On entry: the stride separating matrix row elements in the array b.
Constraint: pdbn.
7:     tComplexInput
On entry: the scalar t.
8:     failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_ALLOC_FAIL
Allocation of memory failed.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, m=value.
Constraint: m0.
On entry, n=value.
Constraint: n0.
NE_INT_2
On entry, pda=value and n=value.
Constraint: pdan.
On entry, pdb=value and n=value.
Constraint: pdbn.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
NW_SOME_PRECISION_LOSS
etAB has been computed using an IEEE double precision Taylor series, although the arithmetic precision is higher than IEEE double precision.

7  Accuracy

For a Hermitian matrix A (for which AH=A) the computed matrix etAB is guaranteed to be close to the exact matrix, that is, the method is forward stable. No such guarantee can be given for non-Hermitian matrices. See Section 4 of Al–Mohy and Higham (2011) for details and further discussion.

8  Parallelism and Performance

nag_matop_complex_gen_matrix_actexp (f01hac) is not threaded by NAG in any implementation.
nag_matop_complex_gen_matrix_actexp (f01hac) makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the Users' Note for your implementation for any additional implementation-specific information.

9  Further Comments

The matrix etAB could be computed by explicitly forming etA using nag_matop_complex_gen_matrix_exp (f01fcc) and multiplying B by the result. However, experiments show that it is usually both more accurate and quicker to use nag_matop_complex_gen_matrix_actexp (f01hac).
The cost of the algorithm is On2m. The precise cost depends on A since a combination of balancing, shifting and scaling is used prior to the Taylor series evaluation.
Approximately n2+ 2m+8 n  of complex allocatable memory is required by nag_matop_complex_gen_matrix_actexp (f01hac).
nag_matop_real_gen_matrix_actexp (f01gac) can be used to compute etAB for real A, B, and t. nag_matop_complex_gen_matrix_actexp_rcomm (f01hbc) 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 A is large and sparse.

10  Example

This example computes etAB, where
A = 0.5+0.0i -0.2+0.0i 1.0+0.1i 0.0+0.4i 0.3+0.0i 0.5+1.2i 3.1+0.0i 1.0+0.2i 0.0+2.0i 0.1+0.0i 1.2+0.2i 0.5+0.0i 1.0+0.3i 0.0+0.2i 0.0+0.9i 0.5+0.0i ,
B = 0.4+0.0i 1.2+0.0i 1.3+0.0i -0.2+0.1i 0.0+0.3i 2.1+0.0i 0.4+0.0i -0.9+0.0i
and
t=-0.5+0.0i .

10.1  Program Text

Program Text (f01hace.c)

10.2  Program Data

Program Data (f01hace.d)

10.3  Program Results

Program Results (f01hace.r)


nag_matop_complex_gen_matrix_actexp (f01hac) (PDF version)
f01 Chapter Contents
f01 Chapter Introduction
NAG Library Manual

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