1ZPOTRI(1)                LAPACK routine (version 3.1)                ZPOTRI(1)
2
3
4

NAME

6       ZPOTRI  - the inverse of a complex Hermitian positive definite matrix A
7       using the Cholesky factorization A = U**H*U or A = L*L**H  computed  by
8       ZPOTRF
9

SYNOPSIS

11       SUBROUTINE ZPOTRI( UPLO, N, A, LDA, INFO )
12
13           CHARACTER      UPLO
14
15           INTEGER        INFO, LDA, N
16
17           COMPLEX*16     A( LDA, * )
18

PURPOSE

20       ZPOTRI  computes  the  inverse of a complex Hermitian positive definite
21       matrix A using the Cholesky factorization A = U**H*U or A = L*L**H com‐
22       puted by ZPOTRF.
23
24

ARGUMENTS

26       UPLO    (input) CHARACTER*1
27               = 'U':  Upper triangle of A is stored;
28               = 'L':  Lower triangle of A is stored.
29
30       N       (input) INTEGER
31               The order of the matrix A.  N >= 0.
32
33       A       (input/output) COMPLEX*16 array, dimension (LDA,N)
34               On  entry,  the triangular factor U or L from the Cholesky fac‐
35               torization A = U**H*U or A = L*L**H, as computed by ZPOTRF.  On
36               exit, the upper or lower triangle of the (Hermitian) inverse of
37               A, overwriting the input factor U or L.
38
39       LDA     (input) INTEGER
40               The leading dimension of the array A.  LDA >= max(1,N).
41
42       INFO    (output) INTEGER
43               = 0:  successful exit
44               < 0:  if INFO = -i, the i-th argument had an illegal value
45               > 0:  if INFO = i, the (i,i) element of the factor U  or  L  is
46               zero, and the inverse could not be computed.
47
48
49
50 LAPACK routine (version 3.1)    November 2006                       ZPOTRI(1)
Impressum