LAPACK  3.9.1
LAPACK: Linear Algebra PACKage
zbdt02.f
Go to the documentation of this file.
1 *> \brief \b ZBDT02
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 ZBDT02( M, N, B, LDB, C, LDC, U, LDU, WORK, RWORK,
12 * RESID )
13 *
14 * .. Scalar Arguments ..
15 * INTEGER LDB, LDC, LDU, M, N
16 * DOUBLE PRECISION RESID
17 * ..
18 * .. Array Arguments ..
19 * DOUBLE PRECISION RWORK( * )
20 * COMPLEX*16 B( LDB, * ), C( LDC, * ), U( LDU, * ),
21 * $ WORK( * )
22 * ..
23 *
24 *
25 *> \par Purpose:
26 * =============
27 *>
28 *> \verbatim
29 *>
30 *> ZBDT02 tests the change of basis C = U' * B by computing the residual
31 *>
32 *> RESID = norm( B - U * C ) / ( max(m,n) * norm(B) * EPS ),
33 *>
34 *> where B and C are M by N matrices, U is an M by M orthogonal matrix,
35 *> and EPS is the machine precision.
36 *> \endverbatim
37 *
38 * Arguments:
39 * ==========
40 *
41 *> \param[in] M
42 *> \verbatim
43 *> M is INTEGER
44 *> The number of rows of the matrices B and C and the order of
45 *> the matrix Q.
46 *> \endverbatim
47 *>
48 *> \param[in] N
49 *> \verbatim
50 *> N is INTEGER
51 *> The number of columns of the matrices B and C.
52 *> \endverbatim
53 *>
54 *> \param[in] B
55 *> \verbatim
56 *> B is COMPLEX*16 array, dimension (LDB,N)
57 *> The m by n matrix B.
58 *> \endverbatim
59 *>
60 *> \param[in] LDB
61 *> \verbatim
62 *> LDB is INTEGER
63 *> The leading dimension of the array B. LDB >= max(1,M).
64 *> \endverbatim
65 *>
66 *> \param[in] C
67 *> \verbatim
68 *> C is COMPLEX*16 array, dimension (LDC,N)
69 *> The m by n matrix C, assumed to contain U' * B.
70 *> \endverbatim
71 *>
72 *> \param[in] LDC
73 *> \verbatim
74 *> LDC is INTEGER
75 *> The leading dimension of the array C. LDC >= max(1,M).
76 *> \endverbatim
77 *>
78 *> \param[in] U
79 *> \verbatim
80 *> U is COMPLEX*16 array, dimension (LDU,M)
81 *> The m by m orthogonal matrix U.
82 *> \endverbatim
83 *>
84 *> \param[in] LDU
85 *> \verbatim
86 *> LDU is INTEGER
87 *> The leading dimension of the array U. LDU >= max(1,M).
88 *> \endverbatim
89 *>
90 *> \param[out] WORK
91 *> \verbatim
92 *> WORK is COMPLEX*16 array, dimension (M)
93 *> \endverbatim
94 *>
95 *> \param[out] RWORK
96 *> \verbatim
97 *> RWORK is DOUBLE PRECISION array, dimension (M)
98 *> \endverbatim
99 *>
100 *> \param[out] RESID
101 *> \verbatim
102 *> RESID is DOUBLE PRECISION
103 *> RESID = norm( B - U * C ) / ( max(m,n) * norm(B) * EPS ),
104 *> \endverbatim
105 *
106 * Authors:
107 * ========
108 *
109 *> \author Univ. of Tennessee
110 *> \author Univ. of California Berkeley
111 *> \author Univ. of Colorado Denver
112 *> \author NAG Ltd.
113 *
114 *> \ingroup complex16_eig
115 *
116 * =====================================================================
117  SUBROUTINE zbdt02( M, N, B, LDB, C, LDC, U, LDU, WORK, RWORK,
118  $ RESID )
119 *
120 * -- LAPACK test routine --
121 * -- LAPACK is a software package provided by Univ. of Tennessee, --
122 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
123 *
124 * .. Scalar Arguments ..
125  INTEGER LDB, LDC, LDU, M, N
126  DOUBLE PRECISION RESID
127 * ..
128 * .. Array Arguments ..
129  DOUBLE PRECISION RWORK( * )
130  COMPLEX*16 B( LDB, * ), C( LDC, * ), U( LDU, * ),
131  $ work( * )
132 * ..
133 *
134 * ======================================================================
135 *
136 * .. Parameters ..
137  DOUBLE PRECISION ZERO, ONE
138  parameter( zero = 0.0d+0, one = 1.0d+0 )
139 * ..
140 * .. Local Scalars ..
141  INTEGER J
142  DOUBLE PRECISION BNORM, EPS, REALMN
143 * ..
144 * .. External Functions ..
145  DOUBLE PRECISION DLAMCH, DZASUM, ZLANGE
146  EXTERNAL dlamch, dzasum, zlange
147 * ..
148 * .. External Subroutines ..
149  EXTERNAL zcopy, zgemv
150 * ..
151 * .. Intrinsic Functions ..
152  INTRINSIC dble, dcmplx, max, min
153 * ..
154 * .. Executable Statements ..
155 *
156 * Quick return if possible
157 *
158  resid = zero
159  IF( m.LE.0 .OR. n.LE.0 )
160  $ RETURN
161  realmn = dble( max( m, n ) )
162  eps = dlamch( 'Precision' )
163 *
164 * Compute norm( B - U * C )
165 *
166  DO 10 j = 1, n
167  CALL zcopy( m, b( 1, j ), 1, work, 1 )
168  CALL zgemv( 'No transpose', m, m, -dcmplx( one ), u, ldu,
169  $ c( 1, j ), 1, dcmplx( one ), work, 1 )
170  resid = max( resid, dzasum( m, work, 1 ) )
171  10 CONTINUE
172 *
173 * Compute norm of B.
174 *
175  bnorm = zlange( '1', m, n, b, ldb, rwork )
176 *
177  IF( bnorm.LE.zero ) THEN
178  IF( resid.NE.zero )
179  $ resid = one / eps
180  ELSE
181  IF( bnorm.GE.resid ) THEN
182  resid = ( resid / bnorm ) / ( realmn*eps )
183  ELSE
184  IF( bnorm.LT.one ) THEN
185  resid = ( min( resid, realmn*bnorm ) / bnorm ) /
186  $ ( realmn*eps )
187  ELSE
188  resid = min( resid / bnorm, realmn ) / ( realmn*eps )
189  END IF
190  END IF
191  END IF
192  RETURN
193 *
194 * End of ZBDT02
195 *
196  END
subroutine zcopy(N, ZX, INCX, ZY, INCY)
ZCOPY
Definition: zcopy.f:81
subroutine zgemv(TRANS, M, N, ALPHA, A, LDA, X, INCX, BETA, Y, INCY)
ZGEMV
Definition: zgemv.f:158
subroutine zbdt02(M, N, B, LDB, C, LDC, U, LDU, WORK, RWORK, RESID)
ZBDT02
Definition: zbdt02.f:119