1DPOTRI(1)                LAPACK routine (version 3.2)                DPOTRI(1)
2
3
4

NAME

6       DPOTRI  -  computes  the  inverse of a real symmetric positive definite
7       matrix A using the Cholesky factorization A = U**T*U or A = L*L**T com‐
8       puted by DPOTRF
9

SYNOPSIS

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

PURPOSE

20       DPOTRI  computes  the  inverse  of  a  real symmetric positive definite
21       matrix A using the Cholesky factorization A = U**T*U or A = L*L**T com‐
22       puted by DPOTRF.
23

ARGUMENTS

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