3 * =========== DOCUMENTATION ===========
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
9 *> Download CTRTRS + dependencies
10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ctrtrs.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ctrtrs.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ctrtrs.f">
21 * SUBROUTINE CTRTRS( UPLO, TRANS, DIAG, N, NRHS, A, LDA, B, LDB,
24 * .. Scalar Arguments ..
25 * CHARACTER DIAG, TRANS, UPLO
26 * INTEGER INFO, LDA, LDB, N, NRHS
28 * .. Array Arguments ..
29 * COMPLEX A( LDA, * ), B( LDB, * )
38 *> CTRTRS solves a triangular system of the form
40 *> A * X = B, A**T * X = B, or A**H * X = B,
42 *> where A is a triangular matrix of order N, and B is an N-by-NRHS
43 *> matrix. A check is made to verify that A is nonsingular.
51 *> UPLO is CHARACTER*1
52 *> = 'U': A is upper triangular;
53 *> = 'L': A is lower triangular.
58 *> TRANS is CHARACTER*1
59 *> Specifies the form of the system of equations:
60 *> = 'N': A * X = B (No transpose)
61 *> = 'T': A**T * X = B (Transpose)
62 *> = 'C': A**H * X = B (Conjugate transpose)
67 *> DIAG is CHARACTER*1
68 *> = 'N': A is non-unit triangular;
69 *> = 'U': A is unit triangular.
75 *> The order of the matrix A. N >= 0.
81 *> The number of right hand sides, i.e., the number of columns
82 *> of the matrix B. NRHS >= 0.
87 *> A is COMPLEX array, dimension (LDA,N)
88 *> The triangular matrix A. If UPLO = 'U', the leading N-by-N
89 *> upper triangular part of the array A contains the upper
90 *> triangular matrix, and the strictly lower triangular part of
91 *> A is not referenced. If UPLO = 'L', the leading N-by-N lower
92 *> triangular part of the array A contains the lower triangular
93 *> matrix, and the strictly upper triangular part of A is not
94 *> referenced. If DIAG = 'U', the diagonal elements of A are
95 *> also not referenced and are assumed to be 1.
101 *> The leading dimension of the array A. LDA >= max(1,N).
106 *> B is COMPLEX array, dimension (LDB,NRHS)
107 *> On entry, the right hand side matrix B.
108 *> On exit, if INFO = 0, the solution matrix X.
114 *> The leading dimension of the array B. LDB >= max(1,N).
120 *> = 0: successful exit
121 *> < 0: if INFO = -i, the i-th argument had an illegal value
122 *> > 0: if INFO = i, the i-th diagonal element of A is zero,
123 *> indicating that the matrix is singular and the solutions
124 *> X have not been computed.
130 *> \author Univ. of Tennessee
131 *> \author Univ. of California Berkeley
132 *> \author Univ. of Colorado Denver
135 *> \date November 2011
137 *> \ingroup complexOTHERcomputational
139 * =====================================================================
140 SUBROUTINE CTRTRS( UPLO, TRANS, DIAG, N, NRHS, A, LDA, B, LDB,
143 * -- LAPACK computational routine (version 3.4.0) --
144 * -- LAPACK is a software package provided by Univ. of Tennessee, --
145 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
148 * .. Scalar Arguments ..
149 CHARACTER DIAG, TRANS, UPLO
150 INTEGER INFO, LDA, LDB, N, NRHS
152 * .. Array Arguments ..
153 COMPLEX A( LDA, * ), B( LDB, * )
156 * =====================================================================
160 PARAMETER ( ZERO = ( 0.0E+0, 0.0E+0 ),
161 $ ONE = ( 1.0E+0, 0.0E+0 ) )
163 * .. Local Scalars ..
166 * .. External Functions ..
170 * .. External Subroutines ..
171 EXTERNAL CTRSM, XERBLA
173 * .. Intrinsic Functions ..
176 * .. Executable Statements ..
178 * Test the input parameters.
181 NOUNIT = LSAME( DIAG, 'N' )
182 IF( .NOT.LSAME( UPLO, 'U' ) .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN
184 ELSE IF( .NOT.LSAME( TRANS, 'N' ) .AND. .NOT.
185 $ LSAME( TRANS, 'T' ) .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN
187 ELSE IF( .NOT.NOUNIT .AND. .NOT.LSAME( DIAG, 'U' ) ) THEN
189 ELSE IF( N.LT.0 ) THEN
191 ELSE IF( NRHS.LT.0 ) THEN
193 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN
195 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN
199 CALL XERBLA( 'CTRTRS', -INFO )
203 * Quick return if possible
208 * Check for singularity.
212 IF( A( INFO, INFO ).EQ.ZERO )
218 * Solve A * x = b, A**T * x = b, or A**H * x = b.
220 CALL CTRSM( 'Left', UPLO, TRANS, DIAG, N, NRHS, ONE, A, LDA, B,