1ZTRTI2(1) LAPACK routine (version 3.1) ZTRTI2(1)
2
3
4
6 ZTRTI2 - the inverse of a complex upper or lower triangular matrix
7
9 SUBROUTINE ZTRTI2( UPLO, DIAG, N, A, LDA, INFO )
10
11 CHARACTER DIAG, UPLO
12
13 INTEGER INFO, LDA, N
14
15 COMPLEX*16 A( LDA, * )
16
18 ZTRTI2 computes the inverse of a complex upper or lower triangular
19 matrix.
20
21 This is the Level 2 BLAS version of the algorithm.
22
23
25 UPLO (input) CHARACTER*1
26 Specifies whether the matrix A is upper or lower triangular. =
27 'U': Upper triangular
28 = 'L': Lower triangular
29
30 DIAG (input) CHARACTER*1
31 Specifies whether or not the matrix A is unit triangular. =
32 'N': Non-unit triangular
33 = 'U': Unit triangular
34
35 N (input) INTEGER
36 The order of the matrix A. N >= 0.
37
38 A (input/output) COMPLEX*16 array, dimension (LDA,N)
39 On entry, the triangular matrix A. If UPLO = 'U', the leading
40 n by n upper triangular part of the array A contains the upper
41 triangular matrix, and the strictly lower triangular part of A
42 is not referenced. If UPLO = 'L', the leading n by n lower
43 triangular part of the array A contains the lower triangular
44 matrix, and the strictly upper triangular part of A is not ref‐
45 erenced. If DIAG = 'U', the diagonal elements of A are also
46 not referenced and are assumed to be 1.
47
48 On exit, the (triangular) inverse of the original matrix, in
49 the same storage format.
50
51 LDA (input) INTEGER
52 The leading dimension of the array A. LDA >= max(1,N).
53
54 INFO (output) INTEGER
55 = 0: successful exit
56 < 0: if INFO = -k, the k-th argument had an illegal value
57
58
59
60 LAPACK routine (version 3.1) November 2006 ZTRTI2(1)