PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dpftri (f07wj)
Purpose
nag_lapack_dpftri (f07wj) computes the inverse of a real symmetric positive definite matrix using the Cholesky factorization computed by
nag_lapack_dpftrf (f07wd) stored in Rectangular Full Packed (RFP) format.
Syntax
Description
nag_lapack_dpftri (f07wj) is used to compute the inverse of a real symmetric positive definite matrix
, stored in RFP format.
The RFP storage format is described in
Rectangular Full Packed (RFP) Storage in the F07 Chapter Introduction.
The function must be preceded by a call to
nag_lapack_dpftrf (f07wd), which computes the Cholesky factorization of
.
If , and is computed by first inverting and then forming .
If , and is computed by first inverting and then forming .
References
Du Croz J J and Higham N J (1992) Stability of methods for matrix inversion IMA J. Numer. Anal. 12 1–19
Gustavson F G, Waśniewski J, Dongarra J J and Langou J (2010) Rectangular full packed format for Cholesky's algorithm: factorization, solution, and inversion ACM Trans. Math. Software 37, 2
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
Specifies whether the RFP representation of
is normal or transposed.
- The matrix is stored in normal RFP format.
- The matrix is stored in transposed RFP format.
Constraint:
or .
- 2:
– string (length ≥ 1)
-
Specifies how
has been factorized.
- , where is upper triangular.
- , where is lower triangular.
Constraint:
or .
- 3:
– int64int32nag_int scalar
-
, the order of the matrix .
Constraint:
.
- 4:
– double array
-
The Cholesky factorization of
stored in RFP format, as returned by
nag_lapack_dpftrf (f07wd).
Optional Input Parameters
None.
Output Parameters
- 1:
– double array
-
The factorization stores the by matrix stored in RFP format.
- 2:
– 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 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
. There is no
function specifically designed to invert a symmetric matrix stored in
RFP format which is not positive definite; the matrix must be treated as a
full symmetric matrix, by calling
nag_lapack_dsytri (f07mj).
Accuracy
The computed inverse
satisfies
where
is a modest function of
,
is the
machine precision and
is the condition number of
defined by
Further Comments
The total number of floating-point operations is approximately .
The complex analogue of this function is
nag_lapack_zpftri (f07ww).
Example
This example computes the inverse of the matrix
, where
Here
is symmetric positive definite, stored in RFP format, and must first be factorized by
nag_lapack_dpftrf (f07wd).
Open in the MATLAB editor:
f07wj_example
function f07wj_example
fprintf('f07wj example results\n\n');
transr = 'n';
uplo = 'l';
ar = [ 0.76 0.34;
4.16 1.18;
-3.12 5.03;
0.56 -0.83;
-0.10 1.18];
n = int64(4);
n2 = (n*(n+1))/2;
ar = reshape(ar,[n2,1]);
[ar, info] = f07wd(transr, uplo, n, ar);
if info == 0
[ar, info] = f07wj(transr, uplo, n, ar);
[a, info] = f01vg(transr, uplo, n, ar);
fprintf('\n');
[ifail] = x04ca(uplo, 'n', a, 'Inverse');
else
fprintf('\na is not positive definite.\n');
end
f07wj example results
Inverse
1 2 3 4
1 0.6995
2 0.7769 1.4239
3 0.7508 1.8255 4.0688
4 -0.9340 -1.8841 -2.9342 3.4978
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015