F07WWF (ZPFTRI) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F07WWF (ZPFTRI)

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

F07WWF (ZPFTRI) computes the inverse of a complex Hermitian positive definite matrix using the Cholesky factorization computed by F07WRF (ZPFTRF) stored in Rectangular Full Packed (RFP) format.

2  Specification

SUBROUTINE F07WWF ( TRANSR, UPLO, N, AR, INFO)
INTEGER  N, INFO
COMPLEX (KIND=nag_wp)  AR(N*(N+1)/2)
CHARACTER(1)  TRANSR, UPLO
The routine may be called by its LAPACK name zpftri.

3  Description

F07WWF (ZPFTRI) is used to compute the inverse of a complex Hermitian positive definite matrix A, stored in RFP format. The RFP storage format is described in Section 3.3.3 in the F07 Chapter Introduction. The routine must be preceded by a call to F07WRF (ZPFTRF), which computes the Cholesky factorization of A.
If UPLO='U', A=UHU and A-1 is computed by first inverting U and then forming U-1U-H.
If UPLO='L', A=LLH and A-1 is computed by first inverting L and then forming L-HL-1.

4  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

5  Parameters

1:     TRANSR – CHARACTER(1)Input
On entry: specifies whether the normal RFP representation of A or its conjugate transpose is stored.
TRANSR='N'
The matrix A is stored in normal RFP format.
TRANSR='C'
The conjugate transpose of the RFP representation of the matrix A is stored.
Constraint: TRANSR='N' or 'C'.
2:     UPLO – CHARACTER(1)Input
On entry: specifies how A has been factorized.
UPLO='U'
A=UHU, where U is upper triangular.
UPLO='L'
A=LLH, where L is lower triangular.
Constraint: UPLO='U' or 'L'.
3:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N0.
4:     ARN×N+1/2 – COMPLEX (KIND=nag_wp) arrayInput/Output
On entry: the Cholesky factorization of A stored in RFP format, as returned by F07WRF (ZPFTRF).
On exit: the factorization is overwritten by the n by n matrix A-1 stored in RFP format.
5:     INFO – INTEGEROutput
On exit: INFO=0 unless the routine detects an error (see Section 6).

6  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 value 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 routine specifically designed to invert a Hermitian matrix stored in RFP format which is not positive definite; the matrix must be treated as a full Hermitian matrix, by calling F07MWF (ZHETRI).

7  Accuracy

The computed inverse X satisfies
XA-I2cnεκ2A   and   AX-I2cnεκ2A ,  
where cn is a modest function of n, ε is the machine precision and κ2A is the condition number of A defined by
κ2A=A2A-12 .  

8  Parallelism and Performance

F07WWF (ZPFTRI) is not threaded by NAG in any implementation.
F07WWF (ZPFTRI) makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9  Further Comments

The total number of real floating-point operations is approximately 83n3.
The real analogue of this routine is F07WJF (DPFTRI).

10  Example

This example computes the inverse of the matrix A, where
A= 3.23+0.00i 1.51-1.92i 1.90+0.84i 0.42+2.50i 1.51+1.92i 3.58+0.00i -0.23+1.11i -1.18+1.37i 1.90-0.84i -0.23-1.11i 4.09+0.00i 2.33-0.14i 0.42-2.50i -1.18-1.37i 2.33+0.14i 4.29+0.00i .  
Here A is Hermitian positive definite, stored in RFP format, and must first be factorized by F07WRF (ZPFTRF).

10.1  Program Text

Program Text (f07wwfe.f90)

10.2  Program Data

Program Data (f07wwfe.d)

10.3  Program Results

Program Results (f07wwfe.r)


F07WWF (ZPFTRI) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015