NAG FL Interface
f07qpf (zspsvx)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f07qpf uses the diagonal pivoting factorization
A=UDUT   or   A=LDLT  
to compute the solution to a complex system of linear equations
AX=B ,  
where A is an n×n symmetric matrix stored in packed format and X and B are n×r matrices. Error bounds on the solution and a condition estimate are also provided.

2 Specification

Fortran Interface
Subroutine f07qpf ( fact, uplo, n, nrhs, ap, afp, ipiv, b, ldb, x, ldx, rcond, ferr, berr, work, rwork, info)
Integer, Intent (In) :: n, nrhs, ldb, ldx
Integer, Intent (Inout) :: ipiv(n)
Integer, Intent (Out) :: info
Real (Kind=nag_wp), Intent (Out) :: rcond, ferr(nrhs), berr(nrhs), rwork(n)
Complex (Kind=nag_wp), Intent (In) :: ap(*), b(ldb,*)
Complex (Kind=nag_wp), Intent (Inout) :: afp(*), x(ldx,*)
Complex (Kind=nag_wp), Intent (Out) :: work(2*n)
Character (1), Intent (In) :: fact, uplo
C Header Interface
#include <nag.h>
void  f07qpf_ (const char *fact, const char *uplo, const Integer *n, const Integer *nrhs, const Complex ap[], Complex afp[], Integer ipiv[], const Complex b[], const Integer *ldb, Complex x[], const Integer *ldx, double *rcond, double ferr[], double berr[], Complex work[], double rwork[], Integer *info, const Charlen length_fact, const Charlen length_uplo)
The routine may be called by the names f07qpf, nagf_lapacklin_zspsvx or its LAPACK name zspsvx.

3 Description

f07qpf performs the following steps:
  1. 1.If fact='N', the diagonal pivoting method is used to factor A as A=UDUT if uplo='U' or A=LDLT if uplo='L', where U (or L) is a product of permutation and unit upper (lower) triangular matrices and D is symmetric and block diagonal with 1×1 and 2×2 diagonal blocks.
  2. 2.If some dii=0, so that D is exactly singular, then the routine returns with info=i. Otherwise, the factored form of A is used to estimate the condition number of the matrix A. If the reciprocal of the condition number is less than machine precision, info=n+1 is returned as a warning, but the routine still goes on to solve for X and compute error bounds as described below.
  3. 3.The system of equations is solved for X using the factored form of A.
  4. 4.Iterative refinement is applied to improve the computed solution matrix and to calculate error bounds and backward error estimates for it.

4 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 https://www.netlib.org/lapack/lug
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (2002) Accuracy and Stability of Numerical Algorithms (2nd Edition) SIAM, Philadelphia

5 Arguments

1: fact Character(1) Input
On entry: specifies whether or not the factorized form of the matrix A has been supplied.
fact='F'
afp and ipiv contain the factorized form of the matrix A. afp and ipiv will not be modified.
fact='N'
The matrix A will be copied to afp and factorized.
Constraint: fact='F' or 'N'.
2: uplo Character(1) Input
On entry: if uplo='U', the upper triangle of A is stored.
If uplo='L', the lower triangle of A is stored.
Constraint: uplo='U' or 'L'.
3: n Integer Input
On entry: n, the number of linear equations, i.e., the order of the matrix A.
Constraint: n0.
4: nrhs Integer Input
On entry: r, the number of right-hand sides, i.e., the number of columns of the matrix B.
Constraint: nrhs0.
5: ap(*) Complex (Kind=nag_wp) array Input
Note: the dimension of the array ap must be at least max(1,n×(n+1)/2).
On entry: the n×n symmetric matrix A, packed by columns.
More precisely,
  • if uplo='U', the upper triangle of A must be stored with element Aij in ap(i+j(j-1)/2) for ij;
  • if uplo='L', the lower triangle of A must be stored with element Aij in ap(i+(2n-j)(j-1)/2) for ij.
6: afp(*) Complex (Kind=nag_wp) array Input/Output
Note: the dimension of the array afp must be at least max(1,n×(n+1)/2).
On entry: if fact='F', afp contains the block diagonal matrix D and the multipliers used to obtain the factor U or L from the factorization A=UDUT or A=LDLT as computed by f07qrf, stored as a packed triangular matrix in the same storage format as A.
On exit: if fact='N', afp contains the block diagonal matrix D and the multipliers used to obtain the factor U or L from the factorization A=UDUT or A=LDLT as computed by f07qrf, stored as a packed triangular matrix in the same storage format as A.
7: ipiv(n) Integer array Input/Output
On entry: if fact='F', ipiv contains details of the interchanges and the block structure of D, as determined by f07qrf.
  • if ipiv(i)=k>0, dii is a 1×1 pivot block and the ith row and column of A were interchanged with the kth row and column;
  • if uplo='U' and ipiv(i-1)=ipiv(i)=-l<0, (di-1,i-1d¯i,i-1 d¯i,i-1dii ) is a 2×2 pivot block and the (i-1)th row and column of A were interchanged with the lth row and column;
  • if uplo='L' and ipiv(i)=ipiv(i+1)=-m<0, (diidi+1,idi+1,idi+1,i+1) is a 2×2 pivot block and the (i+1)th row and column of A were interchanged with the mth row and column.
On exit: if fact='N', ipiv contains details of the interchanges and the block structure of D, as determined by f07qrf, as described above.
8: b(ldb,*) Complex (Kind=nag_wp) array Input
Note: the second dimension of the array b must be at least max(1,nrhs).
On entry: the n×r right-hand side matrix B.
9: ldb Integer Input
On entry: the first dimension of the array b as declared in the (sub)program from which f07qpf is called.
Constraint: ldbmax(1,n).
10: x(ldx,*) Complex (Kind=nag_wp) array Output
Note: the second dimension of the array x must be at least max(1,nrhs).
On exit: if info=0 or n+1, the n×r solution matrix X.
11: ldx Integer Input
On entry: the first dimension of the array x as declared in the (sub)program from which f07qpf is called.
Constraint: ldxmax(1,n).
12: rcond Real (Kind=nag_wp) Output
On exit: the estimate of the reciprocal condition number of the matrix A. If rcond=0.0, the matrix may be exactly singular. This condition is indicated by info>0andinfon. Otherwise, if rcond is less than the machine precision, the matrix is singular to working precision. This condition is indicated by info=n+1.
13: ferr(nrhs) Real (Kind=nag_wp) array Output
On exit: if info=0 or n+1, an estimate of the forward error bound for each computed solution vector, such that x^j-xj/xjferr(j) where x^j is the jth column of the computed solution returned in the array x and xj is the corresponding column of the exact solution X. The estimate is as reliable as the estimate for rcond, and is almost always a slight overestimate of the true error.
14: berr(nrhs) Real (Kind=nag_wp) array Output
On exit: if info=0 or n+1, an estimate of the component-wise relative backward error of each computed solution vector x^j (i.e., the smallest relative change in any element of A or B that makes x^j an exact solution).
15: work(2×n) Complex (Kind=nag_wp) array Workspace
16: rwork(n) Real (Kind=nag_wp) array Workspace
17: info Integer Output
On exit: info=0 unless the routine detects an error (see Section 6).

6 Error Indicators and Warnings

info<0
If info=-i, argument i had an illegal value. An explanatory message is output, and execution of the program is terminated.
info>0andinfon
Element value of the diagonal is exactly zero. The factorization has been completed, but the factor D is exactly singular, so the solution and error bounds could not be computed. rcond=0.0 is returned.
info=n+1
D is nonsingular, but rcond is less than machine precision, meaning that the matrix is singular to working precision. Nevertheless, the solution and error bounds are computed because there are a number of situations where the computed solution can be more accurate than the value of rcond would suggest.

7 Accuracy

For each right-hand side vector b, the computed solution x^ is the exact solution of a perturbed system of equations (A+E)x^=b, where
E1 = O(ε) A1 ,  
where ε is the machine precision. See Chapter 11 of Higham (2002) for further details.
If x^ is the true solution, then the computed solution x satisfies a forward error bound of the form
x-x^ x^ wc cond(A,x^,b)  
where cond(A,x^,b) = |A-1|(|A||x^|+|b|)/ x^ cond(A) = |A-1||A|κ (A). If x^ is the j th column of X , then wc is returned in berr(j) and a bound on x-x^ / x^ is returned in ferr(j) . See Section 4.4 of Anderson et al. (1999) for further details.

8 Parallelism and Performance

f07qpf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f07qpf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

The factorization of A requires approximately 43 n3 floating-point operations.
For each right-hand side, computation of the backward error involves a minimum of 16n2 floating-point operations. Each step of iterative refinement involves an additional 24n2 operations. At most five steps of iterative refinement are performed, but usually only one or two steps are required. Estimating the forward error involves solving a number of systems of equations of the form Ax=b ; the number is usually 4 or 5 and never more than 11. Each solution involves approximately 8n2 operations.
The real analogue of this routine is f07pbf. The complex Hermitian analogue of this routine is f07ppf.

10 Example

This example solves the equations
AX=B ,  
where A is the complex symmetric matrix
A = ( -0.56+0.12i -1.54-2.86i 5.32-1.59i 3.80+0.92i -1.54-2.86i -2.83-0.03i -3.52+0.58i -7.86-2.96i 5.32-1.59i -3.52+0.58i 8.86+1.81i 5.14-0.64i 3.80+0.92i -7.86-2.96i 5.14-0.64i -0.39-0.71i )  
and
B = ( -6.43+19.24i -4.59-35.53i -0.49-01.47i 6.95+20.49i -48.18+66.00i -12.08-27.02i -55.64+41.22i -19.09-35.97i ) .  
Error estimates for the solutions, and an estimate of the reciprocal of the condition number of the matrix A are also output.

10.1 Program Text

Program Text (f07qpfe.f90)

10.2 Program Data

Program Data (f07qpfe.d)

10.3 Program Results

Program Results (f07qpfe.r)