hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_matop_complex_gen_matrix_cond_pow (f01ke)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_matop_complex_gen_matrix_cond_pow (f01ke) computes an estimate of the relative condition number κAp of the pth power (where p is real) of a complex n by n matrix A, in the 1-norm. The principal matrix power Ap is also returned.

Syntax

[a, condpa, ifail] = f01ke(a, p, 'n', n)
[a, condpa, ifail] = nag_matop_complex_gen_matrix_cond_pow(a, p, 'n', n)

Description

For a matrix A with no eigenvalues on the closed negative real line, Ap (p) can be defined as
Ap= expplogA  
where logA is the principal logarithm of A (the unique logarithm whose spectrum lies in the strip z:-π<Imz<π).
The Fréchet derivative of the matrix pth power of A is the unique linear mapping ELA,E such that for any matrix E 
A+Ep - Ap - LA,E = oE .  
The derivative describes the first-order effect of perturbations in A on the matrix power Ap.
The relative condition number of the matrix pth power can be defined by
κAp = LA A Ap ,  
where LA is the norm of the Fréchet derivative of the matrix power at A.
nag_matop_complex_gen_matrix_cond_pow (f01ke) uses the algorithms of Higham and Lin (2011) and Higham and Lin (2013) to compute κAp and Ap. The real number p is expressed as p=q+r where q-1,1 and r. Then Ap=AqAr. The integer power Ar is found using a combination of binary powering and, if necessary, matrix inversion. The fractional power Aq is computed using a Schur decomposition, a Padé approximant and the scaling and squaring method.
To obtain the estimate of κAp, nag_matop_complex_gen_matrix_cond_pow (f01ke) first estimates LA by computing an estimate γ of a quantity Kn-1LA1,nLA1, such that γK. This requires multiple Fréchet derivatives to be computed. Fréchet derivatives of Aq are obtained by differentiating the Padé approximant. Fréchet derivatives of Ap are then computed using a combination of the chain rule and the product rule for Fréchet derivatives.
If A is nonsingular but has negative real eigenvalues nag_matop_complex_gen_matrix_cond_pow (f01ke) will return a non-principal matrix pth power and its condition number.

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:     alda: – complex array
The first dimension of the array a must be at least n.
The second dimension of the array a must be at least n.
The n by n matrix A.
2:     p – double scalar
The required power of A.

Optional Input Parameters

1:     n 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.)
n, the order of the matrix A.
Constraint: n0.

Output Parameters

1:     alda: – complex array
The first dimension of the array a will be n.
The second dimension of the array a will be n.
The n by n principal matrix pth power, Ap, unless ifail=1, in which case a non-principal pth power is returned.
2:     condpa – double scalar
If ifail=0 or 3, an estimate of the relative condition number of the matrix pth power, κAp. Alternatively, if ifail=4, the absolute condition number of the matrix pth power.
3:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
A has eigenvalues on the negative real line. The principal pth power is not defined in this case, so a non-principal power was returned.
   ifail=2
A is singular so the pth power cannot be computed.
   ifail=3
Ap has been computed using an IEEE double precision Padé approximant, although the arithmetic precision is higher than IEEE double precision.
   ifail=4
The relative condition number is infinite. The absolute condition number was returned instead.
   ifail=5
An unexpected internal error occurred. This failure should not occur and suggests that the function has been called incorrectly.
   ifail=-1
Constraint: n0.
   ifail=-3
Constraint: ldan.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

nag_matop_complex_gen_matrix_cond_pow (f01ke) uses the norm estimation function nag_linsys_complex_gen_norm_rcomm (f04zd) to produce an estimate γ of a quantity Kn-1LA1,nLA1, such that γK. For further details on the accuracy of norm estimation, see the documentation for nag_linsys_complex_gen_norm_rcomm (f04zd).
For a normal matrix A (for which AHA=AAH), the Schur decomposition is diagonal and the computation of the fractional part of the matrix power reduces to evaluating powers of the eigenvalues of A and then constructing Ap 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 complex allocatable memory required by the algorithm is typically of the order 10×n2.
The cost of the algorithm is On3 floating-point operations; see Higham and Lin (2013).
If the matrix pth power alone is required, without an estimate of the condition number, then nag_matop_complex_gen_matrix_pow (f01fq) should be used. If the Fréchet derivative of the matrix power is required then nag_matop_complex_gen_matrix_frcht_pow (f01kf) should be used. The real analogue of this function is nag_matop_real_gen_matrix_cond_pow (f01je).

Example

This example estimates the relative condition number of the matrix power Ap, where p=0.4 and
A = 1+2i 3 2 1+3i 1+i 1 1 2+i 1 2 1 2i 3 i 2+i 1 .  
function f01ke_example


fprintf('f01ke example results\n\n');

% Principal power p of matrix A

a = [ 1+2i  3      2     1+3i;
      1+ i  1      1     2+ i;
      1     2      1       2i;
      3        i   2+i   1];

p = 0.4;

[pa, condpa, ifail] = f01ke(a,p);

disp('A^p:');
disp(pa);

fprintf('Estimated condition number is: %6.2f\n', condpa)


f01ke example results

A^p:
   0.9742 + 0.5211i   0.8977 - 0.1170i   0.6389 - 0.3900i   0.0975 + 0.6205i
   0.1586 + 0.2763i   1.0176 - 0.0250i   0.0623 - 0.3471i   0.6431 + 0.2560i
   0.2589 - 0.5817i   0.5633 + 0.3969i   1.1470 + 0.4042i  -0.3771 + 0.3113i
   0.8713 - 0.0270i  -0.5734 + 0.0868i   0.2816 + 0.3739i   1.3568 - 0.2709i

Estimated condition number is:   6.86

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015