PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_matop_real_gen_matrix_frcht_pow (f01jf)
Purpose
nag_matop_real_gen_matrix_frcht_pow (f01jf) computes the Fréchet derivative of the th power (where is real) of the real by matrix applied to the real by matrix . The principal matrix power is also returned.
Syntax
[
a,
e,
ifail] = nag_matop_real_gen_matrix_frcht_pow(
a,
e,
p, 'n',
n)
Description
For a matrix
with no eigenvalues on the closed negative real line,
(
) can be defined as
where
is the principal logarithm of
(the unique logarithm whose spectrum lies in the strip
).
The Fréchet derivative of the matrix
th power of
is the unique linear mapping
such that for any matrix
The derivative describes the first-order effect of perturbations in on the matrix power .
nag_matop_real_gen_matrix_frcht_pow (f01jf) uses the algorithms of
Higham and Lin (2011) and
Higham and Lin (2013) to compute
and
. The real number
is expressed as
where
and
. Then
. The integer power
is found using a combination of binary powering and, if necessary, matrix inversion. The fractional power
is computed using a Schur decomposition, a Padé approximant and the scaling and squaring method. The Padé approximant is differentiated in order to obtain the Fréchet derivative of
and
is then computed using a combination of the chain rule and the product rule for Fréchet derivatives.
References
Higham N J (2008) Functions of Matrices: Theory and Computation SIAM, Philadelphia, PA, USA
Higham N J and Lin L (2011) A Schur–Padé algorithm for fractional powers of a matrix SIAM J. Matrix Anal. Appl. 32(3) 1056–1078
Higham N J and Lin L (2013) An improved Schur–Padé algorithm for fractional powers of a matrix and their Fréchet derivatives
MIMS Eprint 2013.1 Manchester Institute for Mathematical Sciences, School of Mathematics, University of Manchester
http://eprints.ma.man.ac.uk/
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 .
- 2:
– double 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 .
- 3:
– double scalar
-
The required power of .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the arrays
a,
e and the second 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 th power, .
- 2:
– double array
-
The first dimension of the array
e will be
.
The second dimension of the array
e will be
.
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:
-
-
has eigenvalues on the negative real line. The principal
th power is not defined in this case;
nag_matop_complex_gen_matrix_frcht_pow (f01kf) can be used to find a complex, non-principal
th power.
-
-
is singular so the th power cannot be computed.
-
-
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 fractional part of the matrix power reduces to evaluating powers 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
Higham and Lin (2011) and
Higham and Lin (2013) for details and further discussion.
If the condition number of the matrix power is required then
nag_matop_real_gen_matrix_cond_pow (f01je) should be used.
Further Comments
The real allocatable memory required by the algorithm is approximately .
The cost of the algorithm is
floating-point operations; see
Higham and Lin (2011) and
Higham and Lin (2013).
If the matrix
th power alone is required, without the Fréchet derivative, then
nag_matop_real_gen_matrix_pow (f01eq) should be used. If the condition number of the matrix power is required then
nag_matop_real_gen_matrix_cond_pow (f01je) should be used. If
has negative real eigenvalues then
nag_matop_complex_gen_matrix_frcht_pow (f01kf) can be used to return a complex, non-principal
th power and its Fréchet derivative
.
Example
This example finds
and the Fréchet derivative of the matrix power
, where
,
Open in the MATLAB editor:
f01jf_example
function f01jf_example
fprintf('f01jf example results\n\n');
a = [ 3 3 2 1;
3 1 0 2;
1 1 4 3;
3 0 3 1];
e = [ 1 0 2 1;
0 4 5 2;
1 0 0 0;
2 3 3 0];
p = 0.2;
[pa, lpae, ifail] = f01jf(a,e,p);
disp('A^p:');
disp(pa);
disp('L_p(A,E):');
disp(lpae);
f01jf example results
A^p:
1.2446 0.2375 0.2172 -0.1359
0.0925 1.1239 -0.1453 0.3731
-0.0769 0.1972 1.3131 0.1837
0.3985 -0.2902 0.1085 1.1560
L_p(A,E):
0.2189 -0.2004 0.0509 0.0290
-0.3177 0.4143 0.3044 0.0760
-0.0033 -0.1335 -0.2789 0.2699
0.1972 0.3333 0.5379 -0.5228
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015