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_linsys_complex_posdef_packed_solve (f04ce)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_linsys_complex_posdef_packed_solve (f04ce) computes the solution to a complex system of linear equations AX=B, where A is an n by n Hermitian positive definite matrix, stored in packed format, and X and B are n by r matrices. An estimate of the condition number of A and an error bound for the computed solution are also returned.

Syntax

[ap, b, rcond, errbnd, ifail] = f04ce(uplo, ap, b, 'n', n, 'nrhs_p', nrhs_p)
[ap, b, rcond, errbnd, ifail] = nag_linsys_complex_posdef_packed_solve(uplo, ap, b, 'n', n, 'nrhs_p', nrhs_p)

Description

The Cholesky factorization is used to factor A as A=UHU, if uplo='U', or A=LLH, if uplo='L', where U is an upper triangular matrix and L is a lower triangular matrix. The factored form of A is then used to solve the system of equations AX=B.

References

Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999) LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia http://www.netlib.org/lapack/lug
Higham N J (2002) Accuracy and Stability of Numerical Algorithms (2nd Edition) SIAM, Philadelphia

Parameters

Compulsory Input Parameters

1:     uplo – string (length ≥ 1)
If uplo='U', the upper triangle of the matrix A is stored.
If uplo='L', the lower triangle of the matrix A is stored.
Constraint: uplo='U' or 'L'.
2:     ap: – complex array
The dimension of the array ap must be at least max1,n×n+1/2
The n by n Hermitian matrix A. The upper or lower triangular part of the Hermitian matrix is packed column-wise in a linear array. The jth column of A is stored in the array ap as follows:
More precisely,
  • if uplo='U', the upper triangle of A must be stored with element Aij in api+jj-1/2 for ij;
  • if uplo='L', the lower triangle of A must be stored with element Aij in api+2n-jj-1/2 for ij.
3:     bldb: – complex array
The first dimension of the array b must be at least max1,n.
The second dimension of the array b must be at least max1,nrhs_p.
The n by r matrix of right-hand sides B.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the first dimension of the array b.
The number of linear equations n, i.e., the order of the matrix A.
Constraint: n0.
2:     nrhs_p int64int32nag_int scalar
Default: the second dimension of the array b.
The number of right-hand sides r, i.e., the number of columns of the matrix B.
Constraint: nrhs_p0.

Output Parameters

1:     ap: – complex array
The dimension of the array ap will be max1,n×n+1/2
If ifail=0 or n+1, the factor U or L from the Cholesky factorization A=UHU or A=LLH, in the same storage format as A.
2:     bldb: – complex array
The first dimension of the array b will be max1,n.
The second dimension of the array b will be max1,nrhs_p.
If ifail=0 or n+1, the n by r solution matrix X.
3:     rcond – double scalar
If ifail=0 or n+1, an estimate of the reciprocal of the condition number of the matrix A, computed as rcond=1/A1A-11.
4:     errbnd – double scalar
If ifail=0 or n+1, an estimate of the forward error bound for a computed solution x^, such that x^-x1/x1errbnd, where x^ is a column of the computed solution returned in the array b and x is the corresponding column of the exact solution X. If rcond is less than machine precision, then errbnd is returned as unity.
5:     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:

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

   ifail<0andifail-999
If ifail=-i, the ith argument had an illegal value.
   ifail>0andifailn
If ifail=i, the leading minor of order i of A is not positive definite. The factorization could not be completed, and the solution has not been computed.
W  ifail=n+1
rcond is less than machine precision, so that the matrix A is numerically singular. A solution to the equations AX=B has nevertheless been computed.
   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

The computed solution for a single right-hand side, x^, satisfies an equation of the form
A+E x^=b,  
where
E1=Oε A1  
and ε is the machine precision. An approximate error bound for the computed solution is given by
x^-x1 x1 κA E1 A1 ,  
where κA=A-11A1, the condition number of A with respect to the solution of the linear equations. nag_linsys_complex_posdef_packed_solve (f04ce) uses the approximation E1=εA1 to estimate errbnd. See Section 4.4 of Anderson et al. (1999) for further details.

Further Comments

The packed storage scheme is illustrated by the following example when n=4 and uplo='U'. Two-dimensional storage of the Hermitian matrix A:
a11 a12 a13 a14 a22 a23 a24 a33 a34 a44 aij = a- ji  
Packed storage of the upper triangle of A:
ap= a11, a12, a22, a13, a23, a33, a14, a24, a34, a44  
The total number of floating-point operations required to solve the equations AX=B is proportional to 13n3+n2r. The condition number estimation typically requires between four and five solves and never more than eleven solves, following the factorization.
In practice the condition number estimator is very reliable, but it can underestimate the true condition number; see Section 15.3 of Higham (2002) for further details.
The real analogue of nag_linsys_complex_posdef_packed_solve (f04ce) is nag_linsys_real_posdef_packed_solve (f04be).

Example

This example solves the equations
AX=B,  
where A is the Hermitian positive definite matrix
A= 3.23i+0.00 1.51-1.92i 1.90+0.84i 0.42+2.50i 1.51+1.92i 3.58i+0.00 -0.23+1.11i -1.18+1.37i 1.90-0.84i -0.23-1.11i 4.09i+0.00 2.33-0.14i 0.42-2.50i -1.18-1.37i 2.33+0.14i 4.29i+0.00  
and
B= 3.93-06.14i 1.48+06.58i 6.17+09.42i 4.65-04.75i -7.17-21.83i -4.91+02.29i 1.99-14.38i 7.64-10.79i .  
An estimate of the condition number of A and an approximate error bound for the computed solutions are also printed.
function f04ce_example


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

% Solve complex Ax = b for Hermitian packed A with error and condition number
uplo = 'U';
ap = [3.23                                           ...
      1.51 -  1.92i   3.58 +  0i                      ...
      1.90 +  0.84i  -0.23 +  1.11i   4.09 + 0i       ...
      0.42 +  2.50i  -1.18 +  1.37i   2.33 - 0.14i    4.29 + 0i];
b = [ 3.93 -  6.14i,  1.48 +  6.58i;
      6.17 +  9.42i,  4.65 -  4.75i;
     -7.17 - 21.83i, -4.91 +  2.29i;
      1.99 - 14.38i,  7.64 - 10.79i];

[ap, x, rcond, errbnd, ifail] = ...
  f04ce(uplo, ap, b);

disp('Solution');
disp(x);
disp('Estimate of condition number');
fprintf('%10.1f\n\n',1/rcond);
disp('Estimate of error bound for computed solutions');
fprintf('%10.1e\n\n',errbnd);


f04ce example results

Solution
   1.0000 - 1.0000i  -1.0000 + 2.0000i
  -0.0000 + 3.0000i   3.0000 - 4.0000i
  -4.0000 - 5.0000i  -2.0000 + 3.0000i
   2.0000 + 1.0000i   4.0000 - 5.0000i

Estimate of condition number
     151.4

Estimate of error bound for computed solutions
   1.7e-14


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