PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_matop_real_gen_matrix_log (f01ej)
Purpose
nag_matop_real_gen_matrix_log (f01ej) computes the principal matrix logarithm, , of a real by matrix , with no eigenvalues on the closed negative real line.
Syntax
Description
Any nonsingular matrix has infinitely many logarithms. For a matrix with no eigenvalues on the closed negative real line, the principal logarithm is the unique logarithm whose spectrum lies in the strip .
is computed using the inverse scaling and squaring algorithm for the matrix logarithm described in
Al–Mohy and Higham (2011), adapted to real matrices by
Al–Mohy et al. (2012).
References
Al–Mohy A H and Higham N J (2011) Improved inverse scaling and squaring algorithms for the matrix logarithm SIAM J. Sci. Comput. 34(4) C152–C169
Al–Mohy A H, Higham N J and Relton S D (2012) Computing the Fréchet derivative of the matrix logarithm and estimating the condition number MIMS EPrint 2012.72
Higham N J (2008) Functions of Matrices: Theory and Computation SIAM, Philadelphia, PA, USA
Parameters
Compulsory Input Parameters
- 1:
– double 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 second dimension of the array
a and the first dimension of the array
a. (An error is raised if these dimensions are not equal.)
, the order of the matrix .
Constraint:
.
Output Parameters
- 1:
– double array
-
The first dimension of the array
a will be
.
The second dimension of the array
a will be
.
The by principal matrix logarithm, .
- 2:
– double scalar
-
If the function has given a reliable answer then
. If
imnorm differs from
by more than unit roundoff (as returned by
nag_machine_precision (x02aj)) then the computed matrix logarithm is unreliable.
- 3:
– 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:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
-
is singular so the logarithm cannot be computed.
-
-
was found to have eigenvalues on the negative real line. The principal logarithm is not defined in this case.
nag_matop_complex_gen_matrix_log (f01fj) can be used to find a complex non-principal logarithm.
- W
-
has been computed using an IEEE double precision Padé approximant, although the arithmetic precision is higher than IEEE double precision.
-
-
An unexpected internal error occurred. Please contact
NAG.
-
-
Constraint: .
-
-
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 the logarithm of 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. See
Al–Mohy and Higham (2011) and Section 9.4 of
Higham (2008) for details and further discussion.
The sensitivity of the computation of is worst when has an eigenvalue of very small modulus or has a complex conjugate pair of eigenvalues lying close to the negative real axis.
If estimates of the condition number of the matrix logarithm are required then
nag_matop_real_gen_matrix_cond_log (f01jj) should be used.
Further Comments
The cost of the algorithm is
floating-point operations (see
Al–Mohy and Higham (2011)). The double allocatable memory required is approximately
.
If the Fréchet derivative of the matrix logarithm is required then
nag_matop_real_gen_matrix_frcht_log (f01jk) should be used.
nag_matop_complex_gen_matrix_log (f01fj) can be used to find the principal logarithm of a complex matrix. It can also be used to return a complex, non-principal logarithm if a real matrix has no principal logarithm due to the presence of negative eigenvalues.
Example
This example finds the principal matrix logarithm of the matrix
Open in the MATLAB editor:
f01ej_example
function f01ej_example
fprintf('f01ej example results\n\n');
a = [3, -3, 1, 1;
2, 1, -2, 1;
1, 1, 3, -1;
2, 0, 2, 0];
[loga, imnorm, ifail] = f01ej(a);
disp('log(A)');
disp(loga);
f01ej example results
log(A)
1.1957 -1.2076 -0.5802 1.0872
0.8464 1.0133 -0.5985 -0.1641
0.4389 0.6701 1.8449 -1.2111
1.2792 0.6177 2.1448 -1.9743
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015