LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
zsyt01_rook.f
Go to the documentation of this file.
1*> \brief \b ZSYT01_ROOK
2*
3* =========== DOCUMENTATION ===========
4*
5* Online html documentation available at
6* http://www.netlib.org/lapack/explore-html/
7*
8* Definition:
9* ===========
10*
11* SUBROUTINE ZSYT01_ROOK( UPLO, N, A, LDA, AFAC, LDAFAC, IPIV, C, LDC,
12* RWORK, RESID )
13*
14* .. Scalar Arguments ..
15* CHARACTER UPLO
16* INTEGER LDA, LDAFAC, LDC, N
17* DOUBLE PRECISION RESID
18* ..
19* .. Array Arguments ..
20* INTEGER IPIV( * )
21* DOUBLE PRECISION RWORK( * )
22* COMPLEX*16 A( LDA, * ), AFAC( LDAFAC, * ), C( LDC, * )
23* ..
24*
25*
26*> \par Purpose:
27* =============
28*>
29*> \verbatim
30*>
31*> ZSYT01_ROOK reconstructs a complex symmetric indefinite matrix A from its
32*> block L*D*L' or U*D*U' factorization and computes the residual
33*> norm( C - A ) / ( N * norm(A) * EPS ),
34*> where C is the reconstructed matrix, EPS is the machine epsilon,
35*> L' is the transpose of L, and U' is the transpose of U.
36*> \endverbatim
37*
38* Arguments:
39* ==========
40*
41*> \param[in] UPLO
42*> \verbatim
43*> UPLO is CHARACTER*1
44*> Specifies whether the upper or lower triangular part of the
45*> complex symmetric matrix A is stored:
46*> = 'U': Upper triangular
47*> = 'L': Lower triangular
48*> \endverbatim
49*>
50*> \param[in] N
51*> \verbatim
52*> N is INTEGER
53*> The number of rows and columns of the matrix A. N >= 0.
54*> \endverbatim
55*>
56*> \param[in] A
57*> \verbatim
58*> A is COMPLEX*16 array, dimension (LDA,N)
59*> The original complex symmetric matrix A.
60*> \endverbatim
61*>
62*> \param[in] LDA
63*> \verbatim
64*> LDA is INTEGER
65*> The leading dimension of the array A. LDA >= max(1,N)
66*> \endverbatim
67*>
68*> \param[in] AFAC
69*> \verbatim
70*> AFAC is COMPLEX*16 array, dimension (LDAFAC,N)
71*> The factored form of the matrix A. AFAC contains the block
72*> diagonal matrix D and the multipliers used to obtain the
73*> factor L or U from the block L*D*L' or U*D*U' factorization
74*> as computed by ZSYTRF_ROOK.
75*> \endverbatim
76*>
77*> \param[in] LDAFAC
78*> \verbatim
79*> LDAFAC is INTEGER
80*> The leading dimension of the array AFAC. LDAFAC >= max(1,N).
81*> \endverbatim
82*>
83*> \param[in] IPIV
84*> \verbatim
85*> IPIV is INTEGER array, dimension (N)
86*> The pivot indices from ZSYTRF_ROOK.
87*> \endverbatim
88*>
89*> \param[out] C
90*> \verbatim
91*> C is COMPLEX*16 array, dimension (LDC,N)
92*> \endverbatim
93*>
94*> \param[in] LDC
95*> \verbatim
96*> LDC is INTEGER
97*> The leading dimension of the array C. LDC >= max(1,N).
98*> \endverbatim
99*>
100*> \param[out] RWORK
101*> \verbatim
102*> RWORK is DOUBLE PRECISION array, dimension (N)
103*> \endverbatim
104*>
105*> \param[out] RESID
106*> \verbatim
107*> RESID is DOUBLE PRECISION
108*> If UPLO = 'L', norm(L*D*L' - A) / ( N * norm(A) * EPS )
109*> If UPLO = 'U', norm(U*D*U' - A) / ( N * norm(A) * EPS )
110*> \endverbatim
111*
112* Authors:
113* ========
114*
115*> \author Univ. of Tennessee
116*> \author Univ. of California Berkeley
117*> \author Univ. of Colorado Denver
118*> \author NAG Ltd.
119*
120*> \ingroup complex16_lin
121*
122* =====================================================================
123 SUBROUTINE zsyt01_rook( UPLO, N, A, LDA, AFAC, LDAFAC, IPIV, C,
124 $ LDC, RWORK, RESID )
125*
126* -- LAPACK test routine --
127* -- LAPACK is a software package provided by Univ. of Tennessee, --
128* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
129*
130* .. Scalar Arguments ..
131 CHARACTER UPLO
132 INTEGER LDA, LDAFAC, LDC, N
133 DOUBLE PRECISION RESID
134* ..
135* .. Array Arguments ..
136 INTEGER IPIV( * )
137 DOUBLE PRECISION RWORK( * )
138 COMPLEX*16 A( LDA, * ), AFAC( LDAFAC, * ), C( LDC, * )
139* ..
140*
141* =====================================================================
142*
143* .. Parameters ..
144 DOUBLE PRECISION ZERO, ONE
145 parameter( zero = 0.0d+0, one = 1.0d+0 )
146 COMPLEX*16 CZERO, CONE
147 parameter( czero = ( 0.0d+0, 0.0d+0 ),
148 $ cone = ( 1.0d+0, 0.0d+0 ) )
149* ..
150* .. Local Scalars ..
151 INTEGER I, INFO, J
152 DOUBLE PRECISION ANORM, EPS
153* ..
154* .. External Functions ..
155 LOGICAL LSAME
156 DOUBLE PRECISION DLAMCH, ZLANSY
157 EXTERNAL lsame, dlamch, zlansy
158* ..
159* .. External Subroutines ..
160 EXTERNAL zlaset, zlavsy_rook
161* ..
162* .. Intrinsic Functions ..
163 INTRINSIC dble
164* ..
165* .. Executable Statements ..
166*
167* Quick exit if N = 0.
168*
169 IF( n.LE.0 ) THEN
170 resid = zero
171 RETURN
172 END IF
173*
174* Determine EPS and the norm of A.
175*
176 eps = dlamch( 'Epsilon' )
177 anorm = zlansy( '1', uplo, n, a, lda, rwork )
178*
179* Initialize C to the identity matrix.
180*
181 CALL zlaset( 'Full', n, n, czero, cone, c, ldc )
182*
183* Call ZLAVSY_ROOK to form the product D * U' (or D * L' ).
184*
185 CALL zlavsy_rook( uplo, 'Transpose', 'Non-unit', n, n, afac,
186 $ ldafac, ipiv, c, ldc, info )
187*
188* Call ZLAVSY_ROOK again to multiply by U (or L ).
189*
190 CALL zlavsy_rook( uplo, 'No transpose', 'Unit', n, n, afac,
191 $ ldafac, ipiv, c, ldc, info )
192*
193* Compute the difference C - A .
194*
195 IF( lsame( uplo, 'U' ) ) THEN
196 DO 20 j = 1, n
197 DO 10 i = 1, j
198 c( i, j ) = c( i, j ) - a( i, j )
199 10 CONTINUE
200 20 CONTINUE
201 ELSE
202 DO 40 j = 1, n
203 DO 30 i = j, n
204 c( i, j ) = c( i, j ) - a( i, j )
205 30 CONTINUE
206 40 CONTINUE
207 END IF
208*
209* Compute norm( C - A ) / ( N * norm(A) * EPS )
210*
211 resid = zlansy( '1', uplo, n, c, ldc, rwork )
212*
213 IF( anorm.LE.zero ) THEN
214 IF( resid.NE.zero )
215 $ resid = one / eps
216 ELSE
217 resid = ( ( resid / dble( n ) ) / anorm ) / eps
218 END IF
219*
220 RETURN
221*
222* End of ZSYT01_ROOK
223*
224 END
subroutine zlaset(uplo, m, n, alpha, beta, a, lda)
ZLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values.
Definition zlaset.f:106
subroutine zlavsy_rook(uplo, trans, diag, n, nrhs, a, lda, ipiv, b, ldb, info)
ZLAVSY_ROOK
subroutine zsyt01_rook(uplo, n, a, lda, afac, ldafac, ipiv, c, ldc, rwork, resid)
ZSYT01_ROOK