PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dpstrf (f07kd)
Purpose
nag_lapack_dpstrf (f07kd) computes the Cholesky factorization with complete pivoting of a real symmetric positive semidefinite matrix.
Syntax
Description
nag_lapack_dpstrf (f07kd) forms the Cholesky factorization of a real symmetric positive semidefinite matrix either as if or if , where is a permutation matrix, is an upper triangular matrix and is lower triangular.
This algorithm does not attempt to check that is positive semidefinite.
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
http://www.netlib.org/lapack/lawnspdf/lawn161.pdf
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 semidefinite 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:
.
- 2:
– double scalar
Default:
User defined tolerance. If , then will be used. The algorithm terminates at the th step if the th step pivot .
Output Parameters
- 1:
– double array
-
The first dimension of the array
a will be
.
The second dimension of the array
a will be
.
If
, the first
rank rows of the upper triangle of
are overwritten with the nonzero elements of the Cholesky factor
, and the remaining rows of the triangle are destroyed.
If
, the first
rank columns of the lower triangle of
are overwritten with the nonzero elements of the Cholesky factor
, and the remaining columns of the triangle are destroyed.
- 2:
– int64int32nag_int array
-
piv is such that the nonzero entries of
are
, for
.
- 3:
– int64int32nag_int scalar
-
The computed rank of given by the number of steps the algorithm completed.
- 4:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
- W
-
The matrix
is not positive definite. It is either positive semidefinite with computed rank as returned in
rank and less than
, or it may be indefinite, see
Further Comments.
Accuracy
If
and
, the computed Cholesky factor
and permutation matrix
satisfy the following upper bound
where
is a modest linear function of
,
is
machine precision, and
So there is no guarantee of stability of the algorithm for large and , although is generally small in practice.
Further Comments
The total number of floating-point operations is approximately , where is the computed rank of .
This algorithm does not attempt to check that
is positive semidefinite, and in particular the rank detection criterion in the algorithm is based on
being positive semidefinite. If there is doubt over semidefiniteness then you should use the indefinite factorization
nag_lapack_dsytrf (f07md). See
Lucas (2004) for further information.
The complex analogue of this function is
nag_lapack_zpstrf (f07kr).
Example
This example computes the Cholesky factorization of the matrix
, where
Open in the MATLAB editor:
f07kd_example
function f07kd_example
fprintf('f07kd example results\n\n');
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];
wstat = warning();
warning('OFF');
uplo = 'l';
[afac, piv, rank, info] = f07kd( ...
uplo, a);
if (info==0 || info==1)
fprintf('Computed rank: %d\n\n', rank);
afac(:, rank+1:5) = 0;
[ifail] = x04ca( ...
uplo, 'n', afac, 'Factor');
fprintf('\n piv:\n ');
fprintf('%11d', piv);
fprintf('\n');
else
fprintf('\nf07kd returned with error, info = %d.\n',info);
end
warning(wstat);
f07kd example results
Computed rank: 3
Factor
1 2 3 4 5
1 2.8671
2 1.4091 0.7242
3 2.5741 -0.3965 0.5262
4 0.9348 0.0315 -0.2920 0.0000
5 0.8510 0.1254 -0.0018 0.0000 0.0000
piv:
2 1 3 4 5
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015