LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ dqrt16()

subroutine dqrt16 ( character  trans,
integer  m,
integer  n,
integer  nrhs,
double precision, dimension( lda, * )  a,
integer  lda,
double precision, dimension( ldx, * )  x,
integer  ldx,
double precision, dimension( ldb, * )  b,
integer  ldb,
double precision, dimension( * )  rwork,
double precision  resid 
)

DQRT16

Purpose:
 DQRT16 computes the residual for a solution of a system of linear
 equations  A*x = b  or  A'*x = b:
    RESID = norm(B - A*X) / ( max(m,n) * norm(A) * norm(X) * EPS ),
 where EPS is the machine epsilon.
Parameters
[in]TRANS
          TRANS is CHARACTER*1
          Specifies the form of the system of equations:
          = 'N':  A *x = b
          = 'T':  A'*x = b, where A' is the transpose of A
          = 'C':  A'*x = b, where A' is the transpose of A
[in]M
          M is INTEGER
          The number of rows of the matrix A.  M >= 0.
[in]N
          N is INTEGER
          The number of columns of the matrix A.  N >= 0.
[in]NRHS
          NRHS is INTEGER
          The number of columns of B, the matrix of right hand sides.
          NRHS >= 0.
[in]A
          A is DOUBLE PRECISION array, dimension (LDA,N)
          The original M x N matrix A.
[in]LDA
          LDA is INTEGER
          The leading dimension of the array A.  LDA >= max(1,M).
[in]X
          X is DOUBLE PRECISION array, dimension (LDX,NRHS)
          The computed solution vectors for the system of linear
          equations.
[in]LDX
          LDX is INTEGER
          The leading dimension of the array X.  If TRANS = 'N',
          LDX >= max(1,N); if TRANS = 'T' or 'C', LDX >= max(1,M).
[in,out]B
          B is DOUBLE PRECISION array, dimension (LDB,NRHS)
          On entry, the right hand side vectors for the system of
          linear equations.
          On exit, B is overwritten with the difference B - A*X.
[in]LDB
          LDB is INTEGER
          The leading dimension of the array B.  IF TRANS = 'N',
          LDB >= max(1,M); if TRANS = 'T' or 'C', LDB >= max(1,N).
[out]RWORK
          RWORK is DOUBLE PRECISION array, dimension (M)
[out]RESID
          RESID is DOUBLE PRECISION
          The maximum over the number of right hand sides of
          norm(B - A*X) / ( max(m,n) * norm(A) * norm(X) * EPS ).
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 131 of file dqrt16.f.

133*
134* -- LAPACK test routine --
135* -- LAPACK is a software package provided by Univ. of Tennessee, --
136* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
137*
138* .. Scalar Arguments ..
139 CHARACTER TRANS
140 INTEGER LDA, LDB, LDX, M, N, NRHS
141 DOUBLE PRECISION RESID
142* ..
143* .. Array Arguments ..
144 DOUBLE PRECISION A( LDA, * ), B( LDB, * ), RWORK( * ),
145 $ X( LDX, * )
146* ..
147*
148* =====================================================================
149*
150* .. Parameters ..
151 DOUBLE PRECISION ZERO, ONE
152 parameter( zero = 0.0d+0, one = 1.0d+0 )
153* ..
154* .. Local Scalars ..
155 INTEGER J, N1, N2
156 DOUBLE PRECISION ANORM, BNORM, EPS, XNORM
157* ..
158* .. External Functions ..
159 LOGICAL LSAME
160 DOUBLE PRECISION DASUM, DLAMCH, DLANGE
161 EXTERNAL lsame, dasum, dlamch, dlange
162* ..
163* .. External Subroutines ..
164 EXTERNAL dgemm
165* ..
166* .. Intrinsic Functions ..
167 INTRINSIC max
168* ..
169* .. Executable Statements ..
170*
171* Quick exit if M = 0 or N = 0 or NRHS = 0
172*
173 IF( m.LE.0 .OR. n.LE.0 .OR. nrhs.EQ.0 ) THEN
174 resid = zero
175 RETURN
176 END IF
177*
178 IF( lsame( trans, 'T' ) .OR. lsame( trans, 'C' ) ) THEN
179 anorm = dlange( 'I', m, n, a, lda, rwork )
180 n1 = n
181 n2 = m
182 ELSE
183 anorm = dlange( '1', m, n, a, lda, rwork )
184 n1 = m
185 n2 = n
186 END IF
187*
188 eps = dlamch( 'Epsilon' )
189*
190* Compute B - A*X (or B - A'*X ) and store in B.
191*
192 CALL dgemm( trans, 'No transpose', n1, nrhs, n2, -one, a, lda, x,
193 $ ldx, one, b, ldb )
194*
195* Compute the maximum over the number of right hand sides of
196* norm(B - A*X) / ( max(m,n) * norm(A) * norm(X) * EPS ) .
197*
198 resid = zero
199 DO 10 j = 1, nrhs
200 bnorm = dasum( n1, b( 1, j ), 1 )
201 xnorm = dasum( n2, x( 1, j ), 1 )
202 IF( anorm.EQ.zero .AND. bnorm.EQ.zero ) THEN
203 resid = zero
204 ELSE IF( anorm.LE.zero .OR. xnorm.LE.zero ) THEN
205 resid = one / eps
206 ELSE
207 resid = max( resid, ( ( bnorm / anorm ) / xnorm ) /
208 $ ( max( m, n )*eps ) )
209 END IF
210 10 CONTINUE
211*
212 RETURN
213*
214* End of DQRT16
215*
double precision function dasum(n, dx, incx)
DASUM
Definition dasum.f:71
subroutine dgemm(transa, transb, m, n, k, alpha, a, lda, b, ldb, beta, c, ldc)
DGEMM
Definition dgemm.f:188
double precision function dlamch(cmach)
DLAMCH
Definition dlamch.f:69
double precision function dlange(norm, m, n, a, lda, work)
DLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value ...
Definition dlange.f:114
logical function lsame(ca, cb)
LSAME
Definition lsame.f:48
Here is the call graph for this function:
Here is the caller graph for this function: