PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_matop_real_gen_matrix_cond_pow (f01je)
Purpose
nag_matop_real_gen_matrix_cond_pow (f01je) computes an estimate of the relative condition number of the th power (where is real) of a real by matrix , in the -norm. The principal matrix power is also returned.
Syntax
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 .
The relative condition number of the matrix
th power can be defined by
where
is the norm of the Fréchet derivative of the matrix power at
.
nag_matop_real_gen_matrix_cond_pow (f01je) 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.
To obtain an estimate of , nag_matop_real_gen_matrix_cond_pow (f01je) first estimates by computing an estimate of a quantity , such that . This requires multiple Fréchet derivatives to be computed. Fréchet derivatives of are obtained by differentiating the Padé approximant. Fréchet derivatives of are 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 scalar
-
The required power of .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a 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 scalar
-
If or , an estimate of the relative condition number of the matrix th power, . Alternatively, if , the absolute condition number of the matrix th power.
- 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_cond_pow (f01ke) 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.
-
-
The relative condition number is infinite. The absolute condition number was returned instead.
-
-
An unexpected internal error occurred. This failure should not occur and suggests that the function has been called incorrectly.
-
-
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
nag_matop_real_gen_matrix_cond_pow (f01je) uses the norm estimation function
nag_linsys_real_gen_norm_rcomm (f04yd) to produce an estimate
of a quantity
, such that
. For further details on the accuracy of norm estimation, see the documentation for
nag_linsys_real_gen_norm_rcomm (f04yd).
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.
Further Comments
The amount of real allocatable memory required by the algorithm is typically of the order .
The cost of the algorithm is
floating-point operations; see
Higham and Lin (2013).
If the matrix
th power alone is required, without an estimate of the condition number, then
nag_matop_real_gen_matrix_pow (f01eq) should be used. If the Fréchet derivative of the matrix power is required then
nag_matop_real_gen_matrix_frcht_pow (f01jf) should be used. If
has negative real eigenvalues then
nag_matop_complex_gen_matrix_cond_pow (f01ke) can be used to return a complex, non-principal
th power and its condition number.
Example
This example estimates the relative condition number of the matrix power
, where
and
Open in the MATLAB editor:
f01je_example
function f01je_example
fprintf('f01je example results\n\n');
a = [ 3 3 2 1;
1 1 0 2;
1 4 4 2;
3 1 3 1];
p = 0.2;
[pa, condpa, ifail] = f01je(a,p);
disp('A^p:');
disp(pa);
fprintf('\nEstimated relative condition number is : %6.2f\n', condpa);
f01je example results
A^p:
1.2368 0.1977 0.1749 -0.0314
-0.0543 1.1643 -0.0947 0.3145
0.0537 0.3514 1.3254 0.0214
0.3339 -0.2125 0.1880 1.0581
Estimated relative condition number is : 2.75
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015