NAG FL Interface
f01buf (real_​symm_​posdef_​fac)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f01buf performs a ULDLTUT decomposition of a real symmetric positive definite band matrix.

2 Specification

Fortran Interface
Subroutine f01buf ( n, m1, k, a, lda, w, ifail)
Integer, Intent (In) :: n, m1, k, lda
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (Inout) :: a(lda,n)
Real (Kind=nag_wp), Intent (Out) :: w(m1)
C Header Interface
#include <nag.h>
void  f01buf_ (const Integer *n, const Integer *m1, const Integer *k, double a[], const Integer *lda, double w[], Integer *ifail)
The routine may be called by the names f01buf or nagf_matop_real_symm_posdef_fac.

3 Description

The symmetric positive definite matrix A, of order n and bandwidth 2m+1, is divided into the leading principal sub-matrix of order k and its complement, where mkn. A UDUT decomposition of the latter and an LDLT decomposition of the former are obtained by means of a sequence of elementary transformations, where U is unit upper triangular, L is unit lower triangular and D is diagonal. Thus if k=n, an LDLT decomposition of A is obtained.
This routine is specifically designed to precede f01bvf for the transformation of the symmetric-definite eigenproblem Ax=λBx by the method of Crawford where A and B are of band form. In this context, k is chosen to be close to n/2 and the decomposition is applied to the matrix B.

4 References

Wilkinson J H (1965) The Algebraic Eigenvalue Problem Oxford University Press, Oxford
Wilkinson J H and Reinsch C (1971) Handbook for Automatic Computation II, Linear Algebra Springer–Verlag

5 Arguments

1: n Integer Input
On entry: n, the order of the matrix A.
2: m1 Integer Input
On entry: m+1, where m is the number of nonzero superdiagonals in A. Normally m1n.
3: k Integer Input
On entry: k, the change-over point in the decomposition.
Constraint: m1-1kn.
4: a(lda,n) Real (Kind=nag_wp) array Input/Output
On entry: the upper triangle of the n×n symmetric band matrix A, with the diagonal of the matrix stored in the (m+1)th row of the array, and the m superdiagonals within the band stored in the first m rows of the array. Each column of the matrix is stored in the corresponding column of the array. For example, if n=6 and m=2, the storage scheme is
* * a13 a24 a35 a46 * a12 a23 a34 a45 a56 a11 a22 a33 a44 a55 a66  
Elements in the top left corner of the array are not used. The matrix elements within the band can be assigned to the correct elements of the array using the following code:
   Do 20 j = 1, n
      Do 10 i = max(1,j-m1+1), j
         a(i-j+m1,j) = matrix(i,j)
      End Do
   End Do
On exit: A is overwritten by the corresponding elements of L, D and U.
5: lda Integer Input
On entry: the first dimension of the array a as declared in the (sub)program from which f01buf is called.
Constraint: ldam1.
6: w(m1) Real (Kind=nag_wp) array Workspace
7: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, k=value and m1-1=value.
Constraint: km1-1.
On entry, k=value and n=value.
Constraint: kn.
ifail=2
The matrix A is not positive definite. This is probably a result of rounding errors, giving an element of D which is zero or negative. The failure occurs in the leading principal sub-matrix of order k.
ifail=3
The matrix A is not positive definite. This is probably a result of rounding errors, giving an element of D which is zero or negative. The failure occurs in the complement.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The Cholesky decomposition of a positive definite matrix is known for its remarkable numerical stability (see Wilkinson (1965)). The computed U, L and D satisfy the relation ULDLTUT=A+E where the 2-norms of A and E are related by Ec (m+1) 2εA where c is a constant of order unity and ε is the machine precision. In practice, the error is usually appreciably smaller than this.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
f01buf is not threaded in any implementation.

9 Further Comments

The time taken by f01buf is approximately proportional to nm2+3nm.
This routine is specifically designed for use as the first stage in the solution of the generalized symmetric eigenproblem Ax=λBx by Crawford's method which preserves band form in the transformation to a similar standard problem. In this context, for maximum efficiency, k should be chosen as the multiple of m nearest to n/2.
The matrix U is such that U-1AU-T is diagonal in its last n-k rows and columns, L is such that L-1U-1AU-TL-T=D and D is diagonal. To find U, L and D where A=ULDLTUT requires nm(m+3)/2-m(m+1)(m+2)/3 multiplications and divisions which, is independent of k.

10 Example

This example finds a ULDLTUT decomposition of the real symmetric positive definite matrix
( 3 −9 6 −9 31 −2 −4 6 −2 123 −66 15 −4 −66 145 −24 4 15 −24 61 −74 −18 4 −74 98 24 −18 24 6 ) .  

10.1 Program Text

Program Text (f01bufe.f90)

10.2 Program Data

Program Data (f01bufe.d)

10.3 Program Results

Program Results (f01bufe.r)