PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_matop_complex_gen_matrix_fun_std (f01fk)
Purpose
nag_matop_complex_gen_matrix_fun_std (f01fk) computes the matrix exponential, sine, cosine, sinh or cosh, of a complex by matrix using the Schur–Parlett algorithm.
Syntax
[
a,
ifail] = nag_matop_complex_gen_matrix_fun_std(
fun,
a, 'n',
n)
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).
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
Parameters
Compulsory Input Parameters
- 1:
– string
-
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:
– complex array
-
The first dimension of the array
a must be at least
.
The second dimension of the array
a must be at least
.
The by matrix .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a.
, the order of the matrix .
Constraint:
.
Output Parameters
- 1:
– complex array
-
The first dimension of the array
a will be
.
The second dimension of the array
a will be
.
The by matrix, .
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
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 function has been called incorrectly.
-
-
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.
-
-
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 function has been called incorrectly.
-
-
On entry, was an illegal value.
-
-
Input argument number is invalid.
-
-
On entry, argument lda is invalid.
Constraint: .
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
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).
Further Comments
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
nag_matop_complex_gen_matrix_exp (f01fc) be used.
nag_matop_complex_gen_matrix_exp (f01fc) uses an algorithm which is, in general, more accurate than the Schur–Parlett algorithm used by
nag_matop_complex_gen_matrix_fun_std (f01fk).
If estimates of the condition number of the matrix function are required then
nag_matop_complex_gen_matrix_cond_std (f01ka) should be used.
nag_matop_real_gen_matrix_fun_std (f01ek) can be used to find the matrix exponential, sin, cos, sinh or cosh of a real matrix
.
Example
This example finds the matrix sinh of the matrix
Open in the MATLAB editor:
f01fk_example
function f01fk_example
fprintf('f01fk example results\n\n');
a = [1.0+1.0i, 0.0+0.0i, 1.0+3.0i, 0.0+0.0i;
0.0+0.0i, 2.0+0.0i, 0.0+0.0i, 1.0+2.0i;
3.0+1.0i, 0.0+4.0i, 1.0+1.0i, 0.0+0.0i;
1.0+1.0i, 0.0+2.0i, 0.0+0.0i, 1.0+0.0i];
[sinha, ifail] = f01fk('sinh', a);
disp('f(A) = sinh(A)');
disp(sinha);
f01fk example results
f(A) = sinh(A)
-4.3015 - 1.8117i -1.4918 - 8.7793i -4.4242 - 1.3925i 1.4438 - 6.5287i
-1.7976 - 0.2935i 1.4211 - 0.1993i -1.2712 - 1.9931i 1.2118 + 2.8506i
-4.4968 - 0.1964i -5.7934 - 4.7166i -4.3015 - 1.8117i -3.0082 - 4.1821i
-2.1506 - 0.3911i -0.6103 - 1.4408i -1.5163 - 1.9317i 0.0385 - 0.2847i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015