PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_matop_complex_gen_matrix_frcht_log (f01kk)
Purpose
nag_matop_complex_gen_matrix_frcht_log (f01kk) computes the Fréchet derivative of the matrix logarithm of the complex by matrix applied to the complex by matrix . The principal matrix logarithm is also returned.
Syntax
[
a,
e,
ifail] = nag_matop_complex_gen_matrix_frcht_log(
a,
e, 'n',
n)
Description
For a matrix with no eigenvalues on the closed negative real line, the principal matrix logarithm is the unique logarithm whose spectrum lies in the strip .
The Fréchet derivative of the matrix logarithm of
is the unique linear mapping
such that for any matrix
The derivative describes the first order effect of perturbations in on the logarithm .
nag_matop_complex_gen_matrix_frcht_log (f01kk) uses the algorithm of
Al–Mohy et al. (2012) to compute
and
. The principal matrix logarithm
is computed using a Schur decomposition, a Padé approximant and the inverse scaling and squaring method. The Padé approximant is then differentiated in order to obtain the Fréchet derivative
. If
is nonsingular but has negative real eigenvalues, the principal logarithm is not defined, but
nag_matop_complex_gen_matrix_frcht_log (f01kk) will return a non-principal logarithm and Fréchet derivative.
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:
– 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 .
- 2:
– complex array
-
The first dimension of the array
e must be at least
.
The second dimension of the array
e must be at least
.
The by matrix
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the arrays
a,
e and the second dimension of the arrays
a,
e. (An error is raised if these dimensions are not equal.)
, 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 principal matrix logarithm, . Alterntively, if , a non-principal logarithm is returned.
- 2:
– complex array
-
The first dimension of the array
e will be
.
The second dimension of the array
e will be
.
With , or , the Fréchet derivative
- 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:
-
-
is singular so the logarithm cannot be computed.
-
-
has eigenvalues on the negative real line. The principal logarithm is not defined in this case, so a non-principal logarithm was returned.
-
-
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. This failure should not occur and suggests that the function has been called incorrectly.
-
-
Constraint: .
-
-
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 computation of the matrix logarithm 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. The sensitivity of the computation of
and
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. See
Al–Mohy and Higham (2011),
Al–Mohy et al. (2012) and Section 11.2 of
Higham (2008) for details and further discussion.
Further Comments
The cost of the algorithm is
floating-point operations. The complex allocatable memory required is approximately
; see
Al–Mohy et al. (2012) for further details.
If the matrix logarithm alone is required, without the Fréchet derivative, then
nag_matop_complex_gen_matrix_log (f01fj) should be used. If the condition number of the matrix logarithm is required then
nag_matop_complex_gen_matrix_cond_log (f01kj) should be used. The real analogue of this function is
nag_matop_real_gen_matrix_frcht_log (f01jk).
Example
This example finds the principal matrix logarithm
and the Fréchet derivative
, where
Open in the MATLAB editor:
f01kk_example
function f01kk_example
fprintf('f01kk example results\n\n');
a = [ 1+4i 3i i 2;
2i 3 1 1+i;
i 2+ i 2 i;
1+2i 3+2i 1+2i 3+i];
e = [ 1 1+2i 2 2+i;
1+3i i 1 0;
2i 4+ i 1 1;
1 2+2i 3i 1];
[loga, lae, ifail] = f01kk(a,e);
[ifail] = x04da('General', ' ', loga, 'log(A):');
disp(' ');
[ifail] = x04da('General', ' ', lae, 'L_log(A,E):');
f01kk example results
log(A):
1 2 3 4
1 1.4188 0.2758 -0.2240 0.4528
1.2438 1.0040 0.0826 -0.5887
2 0.2299 1.0702 0.5292 0.1976
0.4825 -0.3306 -0.0422 0.1532
3 0.1328 0.9235 0.6051 -0.1211
-0.0462 0.3060 -0.0973 0.2966
4 0.4704 1.0779 0.2724 0.9612
-0.0891 0.0538 0.7627 0.2680
L_log(A,E):
1 2 3 4
1 0.1620 -0.0593 -0.1543 0.5534
-0.6532 0.8434 -1.3537 0.0869
2 0.6673 0.0637 0.3421 -0.4639
0.7351 -0.0911 0.1136 -0.3399
3 -0.2500 1.4898 -0.1547 0.3319
-0.0433 0.6186 -0.0495 -0.3078
4 -0.4004 0.5834 -0.5153 0.4407
-0.5893 -0.5926 1.4107 0.1236
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015