PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zpptrf (f07gr)
Purpose
nag_lapack_zpptrf (f07gr) computes the Cholesky factorization of a complex Hermitian positive definite matrix, using packed storage.
Syntax
Description
nag_lapack_zpptrf (f07gr) forms the Cholesky factorization of a complex Hermitian positive definite matrix either as if or if , where is an upper triangular matrix and is lower triangular, using packed storage.
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:
– int64int32nag_int scalar
-
, the order of the matrix .
Constraint:
.
- 3:
– complex array
-
The dimension of the array
ap
must be at least
The
by
Hermitian matrix
, packed by columns.
More precisely,
- if , the upper triangle of must be stored with element in for ;
- if , the lower triangle of must be stored with element in for .
Optional Input Parameters
None.
Output Parameters
- 1:
– complex array
-
The dimension of the array
ap will be
If , the factor or from the Cholesky factorization or , in the same storage format as .
- 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 Hermitian matrix which is not
positive definite, call
nag_lapack_zhptrf (f07pr) 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 real floating-point operations is approximately .
A call to
nag_lapack_zpptrf (f07gr) may be followed by calls to the functions:
The real analogue of this function is
nag_lapack_dpptrf (f07gd).
Example
This example computes the Cholesky factorization of the matrix
, where
using packed storage.
Open in the MATLAB editor:
f07gr_example
function f07gr_example
fprintf('f07gr example results\n\n');
uplo = 'L';
n = int64(4);
ap = [3.23 + 0i 1.51 + 1.92i 1.90 - 0.84i 0.42 - 2.50i ...
3.58 + 0i -0.23 - 1.11i -1.18 - 1.37i ...
4.09 + 0.00i 2.33 + 0.14i ...
4.29 + 0.00i];
[L, info] = f07gr( ...
uplo, n, ap);
[ifail] = x04dc( ...
uplo, 'Non-unit', n, L, 'factor');
f07gr example results
factor
1 2 3 4
1 1.7972
0.0000
2 0.8402 1.3164
1.0683 0.0000
3 1.0572 -0.4702 1.5604
-0.4674 0.3131 0.0000
4 0.2337 0.0834 0.9360 0.6603
-1.3910 0.0368 0.9900 0.0000
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015