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_lapack_dpbtrf (f07hd)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_lapack_dpbtrf (f07hd) computes the Cholesky factorization of a real symmetric positive definite band matrix.

Syntax

[ab, info] = f07hd(uplo, kd, ab, 'n', n)
[ab, info] = nag_lapack_dpbtrf(uplo, kd, ab, 'n', n)

Description

nag_lapack_dpbtrf (f07hd) forms the Cholesky factorization of a real symmetric positive definite band matrix A either as A=UTU if uplo='U' or A=LLT if uplo='L', where U (or L) is an upper (or lower) triangular band matrix with the same number of superdiagonals (or subdiagonals) as A.

References

Demmel J W (1989) On floating-point errors in Cholesky LAPACK Working Note No. 14 University of Tennessee, Knoxville http://www.netlib.org/lapack/lawnspdf/lawn14.pdf
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore

Parameters

Compulsory Input Parameters

1:     uplo – string (length ≥ 1)
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:     kd int64int32nag_int scalar
kd, the number of superdiagonals or subdiagonals of the matrix A.
Constraint: kd0.
3:     abldab: – double array
The first dimension of the array ab must be at least kd+1.
The second dimension of the array ab must be at least max1,n.
The n by n symmetric positive definite band matrix A.
The matrix is stored in rows 1 to kd+1, more precisely,
  • if uplo='U', the elements of the upper triangle of A within the band must be stored with element Aij in abkd+1+i-jj​ for ​max1,j-kdij;
  • if uplo='L', the elements of the lower triangle of A within the band must be stored with element Aij in ab1+i-jj​ for ​jiminn,j+kd.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the second dimension of the array ab.
n, the order of the matrix A.
Constraint: n0.

Output Parameters

1:     abldab: – double array
The first dimension of the array ab will be kd+1.
The second dimension of the array ab will be max1,n.
The upper or lower triangle of A stores the Cholesky factor U or L as specified by uplo, using the same storage format as described above.
2:     info int64int32nag_int scalar
info=0 unless the function detects an error (see Error Indicators and Warnings).

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>0
The leading minor of order _ is not positive definite and the factorization could not be completed. Hence A itself is not positive definite. This may indicate an error in forming the matrix A. There is no function specifically designed to factorize a symmetric band matrix which is not positive definite; the matrix must be treated either as a nonsymmetric band matrix, by calling nag_lapack_dgbtrf (f07bd) or as a full symmetric matrix, by calling nag_lapack_dsytrf (f07md).

Accuracy

If uplo='U', the computed factor U is the exact factor of a perturbed matrix A+E, where
Eck+1εUTU ,  
ck+1 is a modest linear function of k+1, and ε is the machine precision.
If uplo='L', a similar statement holds for the computed factor L. It follows that eijck+1εaiiajj.

Further Comments

The total number of floating-point operations is approximately n k+1 2, assuming nk.
A call to nag_lapack_dpbtrf (f07hd) may be followed by calls to the functions:
The complex analogue of this function is nag_lapack_zpbtrf (f07hr).

Example

This example computes the Cholesky factorization of the matrix A, where
A= 5.49 2.68 0.00 0.00 2.68 5.63 -2.39 0.00 0.00 -2.39 2.60 -2.22 0.00 0.00 -2.22 5.17 .  
function f07hd_example


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

% Symmetric A (one lower/upper off-diagonal) in banded form 
uplo = 'Lower';
kd = int64(1);
n  = int64(4);
ab = [5.49,  5.63,  2.60, 5.17;
      2.68, -2.39, -2.22, 0.00];

% Factorize
[abf, info] = f07hd( ...
                     uplo, kd, ab);

ku = int64(0);
[ifail] = x04ce( ...
                 n, n, kd, ku, abf, 'Cholesky factor');


f07hd example results

 Cholesky factor
             1          2          3          4
 1      2.3431
 2      1.1438     2.0789
 3                -1.1497     1.1306
 4                           -1.9635     1.1465

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