NAG Library Routine Document
F01FKF
1 Purpose
F01FKF computes the matrix exponential, sine, cosine, sinh or cosh, of a complex by matrix using the Schur–Parlett algorithm.
2 Specification
INTEGER |
N, LDA, IFAIL |
COMPLEX (KIND=nag_wp) |
A(LDA,*) |
CHARACTER(*) |
FUN |
|
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 Parameters
- 1: FUN – CHARACTER(*)Input
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 .
- 2: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 3: A(LDA,) – COMPLEX (KIND=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
A
must be at least
.
On entry: the by matrix .
On exit: the by matrix, .
- 4: LDA – INTEGERInput
On entry: the first dimension of the array
A as declared in the (sub)program from which F01FKF is called.
Constraint:
.
- 5: 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:
-
A Taylor series failed to converge.
-
An unexpected internal error occurred when evaluating the function at a point. Please contact
NAG.
-
There was an error whilst reordering the Schur form of .
Note: this failure should not occur and suggests that the routine has been called incorrectly.
-
The routine was unable to compute the Schur decomposition of .
Note: this failure should not occur and suggests that the routine has been called incorrectly.
-
An unexpected internal error occurred. Please contact
NAG.
-
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 routine has been called incorrectly.
-
Input argument number is invalid.
-
Input argument number is invalid.
-
On entry, parameter
LDA is invalid.
Constraint:
.
-
Allocation of memory failed.
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).
The integer allocatable memory required is , and the
complex
allocatable memory required is approximately .
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
F01FCF be used.
F01FCF uses an algorithm which is, in general, more accurate than the Schur–Parlett algorithm used by F01FKF.
If estimates of the condition number of the matrix function are required then
F01KAF should be used.
F01EKF can be used to find the matrix exponential, sin, cos, sinh or cosh of a real matrix
.
9 Example
This example finds the matrix sinh of the matrix
9.1 Program Text
Program Text (f01fkfe.f90)
9.2 Program Data
Program Data (f01fkfe.d)
9.3 Program Results
Program Results (f01fkfe.r)