NAG Library Function Document
nag_matop_real_gen_matrix_fun_std (f01ekc)
1
Purpose
nag_matop_real_gen_matrix_fun_std (f01ekc) computes the matrix exponential, sine, cosine, sinh or cosh, of a real by matrix using the Schur–Parlett algorithm.
2
Specification
#include <nag.h> |
#include <nagf01.h> |
void |
nag_matop_real_gen_matrix_fun_std (Nag_OrderType order,
Nag_MatFunType fun,
Integer n,
double a[],
Integer pda,
double *imnorm,
NagError *fail) |
|
3
Description
, where
is either the exponential, sine, cosine, sinh or cosh, is computed using the Schur–Parlett algorithm described in
Higham (2008) and
Davies and Higham (2003).
4
References
Davies P I and Higham N J (2003) A Schur–Parlett algorithm for computing matrix functions. SIAM J. Matrix Anal. Appl. 25(2) 464–485
Higham N J (2008) Functions of Matrices: Theory and Computation SIAM, Philadelphia, PA, USA
5
Arguments
- 1:
– Nag_OrderTypeInput
-
On entry: the
order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by
. See
Section 3.3.1.3 in How to Use the NAG Library and its Documentation for a more detailed explanation of the use of this argument.
Constraint:
or .
- 2:
– Nag_MatFunTypeInput
-
On entry: indicates which matrix function will be computed.
- The matrix exponential, , will be computed.
- The matrix sine, , will be computed.
- The matrix cosine, , will be computed.
- The hyperbolic matrix sine, , will be computed.
- The hyperbolic matrix cosine, , will be computed.
Constraint:
, , , or .
- 3:
– IntegerInput
-
On entry: , the order of the matrix .
Constraint:
.
- 4:
– doubleInput/Output
-
Note: the dimension,
dim, of the array
a
must be at least
.
The
th element of the matrix
is stored in
- when ;
- when .
On entry: the by matrix .
On exit: the by matrix, .
- 5:
– IntegerInput
-
On entry: the stride separating row or column elements (depending on the value of
order) in the array
a.
Constraint:
.
- 6:
– double *Output
-
On exit: if
has complex eigenvalues,
nag_matop_real_gen_matrix_fun_std (f01ekc) will use complex arithmetic to compute the matrix function. The imaginary part is discarded at the end of the computation, because it will theoretically vanish.
imnorm contains the
-norm of the imaginary part, which should be used to check that the routine has given a reliable answer.
If has real eigenvalues, nag_matop_real_gen_matrix_fun_std (f01ekc) uses real arithmetic and .
- 7:
– NagError *Input/Output
-
The NAG error argument (see
Section 3.7 in How to Use the NAG Library and its Documentation).
6
Error Indicators and Warnings
- NE_ALLOC_FAIL
-
Dynamic memory allocation failed.
See
Section 2.3.1.2 in How to Use the NAG Library and its Documentation for further information.
- NE_BAD_PARAM
-
On entry, argument had an illegal value.
- NE_CONVERGENCE
-
A Taylor series failed to converge.
- NE_INT
-
On entry, .
Constraint: .
- NE_INT_2
-
On entry, and .
Constraint: .
- 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.
See
Section 2.7.6 in How to Use the NAG Library and its Documentation for further information.
An unexpected internal error occurred when evaluating the function at a point. Please contact
NAG.
An unexpected internal error occurred when ordering the eigenvalues of
. Please contact
NAG.
The function was unable to compute the Schur decomposition of .
Note: this failure should not occur and suggests that the function has been called incorrectly.
There was an error whilst reordering the Schur form of .
Note: this failure should not occur and suggests that the function has been called incorrectly.
- NE_NO_LICENCE
-
Your licence key may have expired or may not have been installed correctly.
See
Section 2.7.5 in How to Use the NAG Library and its Documentation for further information.
- NE_SINGULAR
-
The linear equations to be solved are nearly singular and the Padé approximant used to compute the exponential may have no correct figures.
Note: this failure should not occur and suggests that the function has been called incorrectly.
7
Accuracy
For a normal matrix (for which ), the Schur decomposition is diagonal and the algorithm reduces to evaluating at the eigenvalues of and then constructing using the Schur vectors. This should give a very accurate result. In general, however, no error bounds are available for the algorithm.
For further discussion of the Schur–Parlett algorithm see Section 9.4 of
Higham (2008).
8
Parallelism and Performance
nag_matop_real_gen_matrix_fun_std (f01ekc) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library. In these implementations, this function may make calls to the user-supplied functions from within an OpenMP parallel region. Thus OpenMP pragmas within the user functions can only be used if you are compiling the user-supplied function and linking the executable in accordance with the instructions in the
Users' Note for your implementation.
nag_matop_real_gen_matrix_fun_std (f01ekc) 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
x06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this function. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The Integer allocatable memory required is . If has real eigenvalues then up to of double allocatable memory may be required. If has complex eigenvalues then up to of Complex allocatable memory may be required.
The cost of the Schur–Parlett algorithm depends on the spectrum of
, but is roughly between
and
floating-point operations; see Algorithm 9.6 of
Higham (2008).
If the matrix exponential is required then it is recommended that
nag_real_gen_matrix_exp (f01ecc) be used.
nag_real_gen_matrix_exp (f01ecc) uses an algorithm which is, in general, more accurate than the Schur–Parlett algorithm used by
nag_matop_real_gen_matrix_fun_std (f01ekc).
If estimates of the condition number of the matrix function are required then
nag_matop_real_gen_matrix_cond_std (f01jac) should be used.
nag_matop_complex_gen_matrix_fun_std (f01fkc) can be used to find the matrix exponential, sin, cos, sinh or cosh of a complex matrix.
10
Example
This example finds the matrix cosine of the matrix
10.1
Program Text
Program Text (f01ekce.c)
10.2
Program Data
Program Data (f01ekce.d)
10.3
Program Results
Program Results (f01ekce.r)