PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dpotrf (f07fd)
Purpose
nag_lapack_dpotrf (f07fd) computes the Cholesky factorization of a real symmetric positive definite matrix.
Syntax
Description
nag_lapack_dpotrf (f07fd) forms the Cholesky factorization of a real symmetric positive definite matrix either as if or if , where is an upper triangular matrix and is lower triangular.
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:
– string (length ≥ 1)
-
Specifies whether the upper or lower triangular part of
is stored and how
is to be factorized.
- The upper triangular part of is stored and is factorized as , where is upper triangular.
- The lower triangular part of is stored and is factorized as , where is lower triangular.
Constraint:
or .
- 2:
– double array
-
The first dimension of the array
a must be at least
.
The second dimension of the array
a must be at least
.
The
by
symmetric positive definite matrix
.
- If , the upper triangular part of must be stored and the elements of the array below the diagonal are not referenced.
- If , the lower triangular part of must be stored and the elements of the array above the diagonal are not referenced.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a and the second dimension of the array
a.
, the order of the matrix .
Constraint:
.
Output Parameters
- 1:
– double array
-
The first dimension of the array
a will be
.
The second dimension of the array
a will be
.
The upper or lower triangle of
stores the Cholesky factor
or
as specified by
uplo.
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
-
-
The leading minor of order
is not positive definite
and the factorization could not be completed. Hence
itself
is not positive definite. This may indicate an error in forming the
matrix
. To factorize a symmetric matrix which is not
positive definite, call
nag_lapack_dsytrf (f07md) instead.
Accuracy
If
, the computed factor
is the exact factor of a perturbed matrix
, where
is a modest linear function of
, and
is the
machine precision. If
, a similar statement holds for the computed factor
. It follows that
.
Further Comments
The total number of floating-point operations is approximately .
A call to
nag_lapack_dpotrf (f07fd) may be followed by calls to the functions:
The complex analogue of this function is
nag_lapack_zpotrf (f07fr).
Example
This example computes the Cholesky factorization of the matrix
, where
Open in the MATLAB editor:
f07fd_example
function f07fd_example
fprintf('f07fd example results\n\n');
uplo = 'Lower';
a = [ 4.16, 0, 0, 0;
-3.12, 5.03, 0, 0;
0.56, -0.83, 0.76, 0;
-0.10, 1.18, 0.34, 1.18];
[L, info] = f07fd( ...
uplo, a);
[ifail] = x04ca( ...
uplo, 'Non-unit', L, 'Cholesky factor');
f07fd example results
Cholesky factor
1 2 3 4
1 2.0396
2 -1.5297 1.6401
3 0.2746 -0.2500 0.7887
4 -0.0490 0.6737 0.6617 0.5347
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015