1CGETRI(1) LAPACK routine (version 3.2) CGETRI(1)
2
3
4
6 CGETRI - computes the inverse of a matrix using the LU factorization
7 computed by CGETRF
8
10 SUBROUTINE CGETRI( N, A, LDA, IPIV, WORK, LWORK, INFO )
11
12 INTEGER INFO, LDA, LWORK, N
13
14 INTEGER IPIV( * )
15
16 COMPLEX A( LDA, * ), WORK( * )
17
19 CGETRI computes the inverse of a matrix using the LU factorization com‐
20 puted by CGETRF. This method inverts U and then computes inv(A) by
21 solving the system inv(A)*L = inv(U) for inv(A).
22
24 N (input) INTEGER
25 The order of the matrix A. N >= 0.
26
27 A (input/output) COMPLEX array, dimension (LDA,N)
28 On entry, the factors L and U from the factorization A = P*L*U
29 as computed by CGETRF. On exit, if INFO = 0, the inverse of
30 the original matrix A.
31
32 LDA (input) INTEGER
33 The leading dimension of the array A. LDA >= max(1,N).
34
35 IPIV (input) INTEGER array, dimension (N)
36 The pivot indices from CGETRF; for 1<=i<=N, row i of the matrix
37 was interchanged with row IPIV(i).
38
39 WORK (workspace/output) COMPLEX array, dimension (MAX(1,LWORK))
40 On exit, if INFO=0, then WORK(1) returns the optimal LWORK.
41
42 LWORK (input) INTEGER
43 The dimension of the array WORK. LWORK >= max(1,N). For opti‐
44 mal performance LWORK >= N*NB, where NB is the optimal block‐
45 size returned by ILAENV. If LWORK = -1, then a workspace query
46 is assumed; the routine only calculates the optimal size of the
47 WORK array, returns this value as the first entry of the WORK
48 array, and no error message related to LWORK is issued by
49 XERBLA.
50
51 INFO (output) INTEGER
52 = 0: successful exit
53 < 0: if INFO = -i, the i-th argument had an illegal value
54 > 0: if INFO = i, U(i,i) is exactly zero; the matrix is singu‐
55 lar and its inverse could not be computed.
56
57
58
59 LAPACK routine (version 3.2) November 2008 CGETRI(1)