NAG FL Interface
f07kdf (dpstrf)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f07kdf computes the Cholesky factorization with complete pivoting of a real symmetric positive semidefinite matrix.

2 Specification

Fortran Interface
Subroutine f07kdf ( uplo, n, a, lda, piv, rank, tol, work, info)
Integer, Intent (In) :: n, lda
Integer, Intent (Out) :: piv(n), rank, info
Real (Kind=nag_wp), Intent (In) :: tol
Real (Kind=nag_wp), Intent (Inout) :: a(lda,*)
Real (Kind=nag_wp), Intent (Out) :: work(2*n)
Character (1), Intent (In) :: uplo
C Header Interface
#include <nag.h>
void  f07kdf_ (const char *uplo, const Integer *n, double a[], const Integer *lda, Integer piv[], Integer *rank, const double *tol, double work[], Integer *info, const Charlen length_uplo)
The routine may be called by the names f07kdf, nagf_lapacklin_dpstrf or its LAPACK name dpstrf.

3 Description

f07kdf forms the Cholesky factorization of a real symmetric positive semidefinite matrix A either as PTAP=UTU if uplo='U' or PTAP=LLT if uplo='L', where P is a permutation matrix, U is an upper triangular matrix and L is lower triangular.
This algorithm does not attempt to check that A is positive semidefinite.

4 References

Higham N J (2002) Accuracy and Stability of Numerical Algorithms (2nd Edition) SIAM, Philadelphia
Lucas C (2004) LAPACK-style codes for Level 2 and 3 pivoted Cholesky factorizations LAPACK Working Note No. 161. Technical Report CS-04-522 Department of Computer Science, University of Tennessee, 107 Ayres Hall, Knoxville, TN 37996-1301, USA https://www.netlib.org/lapack/lawnspdf/lawn161.pdf

5 Arguments

1: uplo Character(1) Input
On entry: specifies whether the upper or lower triangular part of A is stored and how A is to be factorized.
uplo='U'
The upper triangular part of A is stored and A is factorized as UTU, where U is upper triangular.
uplo='L'
The lower triangular part of A is stored and A is factorized as LLT, where L is lower triangular.
Constraint: uplo='U' or 'L'.
2: n Integer Input
On entry: n, the order of the matrix A.
Constraint: n0.
3: a(lda,*) Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array a must be at least max(1,n).
On entry: the n×n symmetric positive semidefinite matrix A.
  • If uplo='U', the upper triangular part of A must be stored and the elements of the array below the diagonal are not referenced.
  • If uplo='L', the lower triangular part of A must be stored and the elements of the array above the diagonal are not referenced.
On exit: if uplo='U', the first rank rows of the upper triangle of A are overwritten with the nonzero elements of the Cholesky factor U, and the remaining rows of the triangle are destroyed.
If uplo='L', the first rank columns of the lower triangle of A are overwritten with the nonzero elements of the Cholesky factor L, and the remaining columns of the triangle are destroyed.
4: lda Integer Input
On entry: the first dimension of the array a as declared in the (sub)program from which f07kdf is called.
Constraint: ldamax(1,n).
5: piv(n) Integer array Output
On exit: piv is such that the nonzero entries of P are P (piv(k),k) =1, for k=1,2,,n.
6: rank Integer Output
On exit: the computed rank of A given by the number of steps the algorithm completed.
7: tol Real (Kind=nag_wp) Input
On entry: user defined tolerance. If tol<0, n×maxk=1,n|Akk|×machine precision will be used. The algorithm terminates at the rth step if the (r+1)th step pivot <tol.
8: work(2*n) Real (Kind=nag_wp) array Workspace
9: 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=1
The matrix A is not positive definite. It is either positive semidefinite with computed rank as returned in rank and less than n, or it may be indefinite, see Section 9.

7 Accuracy

If uplo='L' and rank=r, the computed Cholesky factor L and permutation matrix P satisfy the following upper bound
A-PLLTPT 2 A2 2r c(r) ε ( W 2 +1) 2 + O(ε2) ,  
where
W = L 11 −1 L12 ,   L = ( L11 0 L12 0 ) ,   L11 r×r ,  
c(r) is a modest linear function of r, ε is machine precision, and
W2 13 (n-r) (4r-1) .  
So there is no guarantee of stability of the algorithm for large n and r, although W2 is generally small in practice.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
f07kdf 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 total number of floating-point operations is approximately nr2-2/3r3, where r is the computed rank of A.
This algorithm does not attempt to check that A is positive semidefinite, and in particular the rank detection criterion in the algorithm is based on A being positive semidefinite. If there is doubt over semidefiniteness then you should use the indefinite factorization f07mdf. See Lucas (2004) for further information.
The complex analogue of this routine is f07krf.

10 Example

This example computes the Cholesky factorization of the matrix A, where
A= ( 2.51 4.04 3.34 1.34 1.29 4.04 8.22 7.38 2.68 2.44 3.34 7.38 7.06 2.24 2.14 1.34 2.68 2.24 0.96 0.80 1.29 2.44 2.14 0.80 0.74 ) .  

10.1 Program Text

Program Text (f07kdfe.f90)

10.2 Program Data

Program Data (f07kdfe.d)

10.3 Program Results

Program Results (f07kdfe.r)