LAPACK  3.9.1
LAPACK: Linear Algebra PACKage

◆ dqrt17()

double precision function dqrt17 ( character  TRANS,
integer  IRESID,
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( ldb, * )  C,
double precision, dimension( lwork )  WORK,
integer  LWORK 
)

DQRT17

Purpose:
 DQRT17 computes the ratio

    || R'*op(A) ||/(||A||*alpha*max(M,N,NRHS)*eps)

 where R = op(A)*X - B, op(A) is A or A', and

    alpha = ||B|| if IRESID = 1 (zero-residual problem)
    alpha = ||R|| if IRESID = 2 (otherwise).
Parameters
[in]TRANS
          TRANS is CHARACTER*1
          Specifies whether or not the transpose of A is used.
          = 'N':  No transpose, op(A) = A.
          = 'T':  Transpose, op(A) = A'.
[in]IRESID
          IRESID is INTEGER
          IRESID = 1 indicates zero-residual problem.
          IRESID = 2 indicates non-zero residual.
[in]M
          M is INTEGER
          The number of rows of the matrix A.
          If TRANS = 'N', the number of rows of the matrix B.
          If TRANS = 'T', the number of rows of the matrix X.
[in]N
          N is INTEGER
          The number of columns of the matrix  A.
          If TRANS = 'N', the number of rows of the matrix X.
          If TRANS = 'T', the number of rows of the matrix B.
[in]NRHS
          NRHS is INTEGER
          The number of columns of the matrices X and B.
[in]A
          A is DOUBLE PRECISION array, dimension (LDA,N)
          The m-by-n matrix A.
[in]LDA
          LDA is INTEGER
          The leading dimension of the array A. LDA >= M.
[in]X
          X is DOUBLE PRECISION array, dimension (LDX,NRHS)
          If TRANS = 'N', the n-by-nrhs matrix X.
          If TRANS = 'T', the m-by-nrhs matrix X.
[in]LDX
          LDX is INTEGER
          The leading dimension of the array X.
          If TRANS = 'N', LDX >= N.
          If TRANS = 'T', LDX >= M.
[in]B
          B is DOUBLE PRECISION array, dimension (LDB,NRHS)
          If TRANS = 'N', the m-by-nrhs matrix B.
          If TRANS = 'T', the n-by-nrhs matrix B.
[in]LDB
          LDB is INTEGER
          The leading dimension of the array B.
          If TRANS = 'N', LDB >= M.
          If TRANS = 'T', LDB >= N.
[out]C
          C is DOUBLE PRECISION array, dimension (LDB,NRHS)
[out]WORK
          WORK is DOUBLE PRECISION array, dimension (LWORK)
[in]LWORK
          LWORK is INTEGER
          The length of the array WORK.  LWORK >= NRHS*(M+N).
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 148 of file dqrt17.f.

150 *
151 * -- LAPACK test routine --
152 * -- LAPACK is a software package provided by Univ. of Tennessee, --
153 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
154 *
155 * .. Scalar Arguments ..
156  CHARACTER TRANS
157  INTEGER IRESID, LDA, LDB, LDX, LWORK, M, N, NRHS
158 * ..
159 * .. Array Arguments ..
160  DOUBLE PRECISION A( LDA, * ), B( LDB, * ), C( LDB, * ),
161  $ WORK( LWORK ), X( LDX, * )
162 * ..
163 *
164 * =====================================================================
165 *
166 * .. Parameters ..
167  DOUBLE PRECISION ZERO, ONE
168  parameter( zero = 0.0d0, one = 1.0d0 )
169 * ..
170 * .. Local Scalars ..
171  INTEGER INFO, ISCL, NCOLS, NROWS
172  DOUBLE PRECISION BIGNUM, ERR, NORMA, NORMB, NORMRS, SMLNUM
173 * ..
174 * .. Local Arrays ..
175  DOUBLE PRECISION RWORK( 1 )
176 * ..
177 * .. External Functions ..
178  LOGICAL LSAME
179  DOUBLE PRECISION DLAMCH, DLANGE
180  EXTERNAL lsame, dlamch, dlange
181 * ..
182 * .. External Subroutines ..
183  EXTERNAL dgemm, dlacpy, dlascl, xerbla
184 * ..
185 * .. Intrinsic Functions ..
186  INTRINSIC dble, max
187 * ..
188 * .. Executable Statements ..
189 *
190  dqrt17 = zero
191 *
192  IF( lsame( trans, 'N' ) ) THEN
193  nrows = m
194  ncols = n
195  ELSE IF( lsame( trans, 'T' ) ) THEN
196  nrows = n
197  ncols = m
198  ELSE
199  CALL xerbla( 'DQRT17', 1 )
200  RETURN
201  END IF
202 *
203  IF( lwork.LT.ncols*nrhs ) THEN
204  CALL xerbla( 'DQRT17', 13 )
205  RETURN
206  END IF
207 *
208  IF( m.LE.0 .OR. n.LE.0 .OR. nrhs.LE.0 ) THEN
209  RETURN
210  END IF
211 *
212  norma = dlange( 'One-norm', m, n, a, lda, rwork )
213  smlnum = dlamch( 'Safe minimum' ) / dlamch( 'Precision' )
214  bignum = one / smlnum
215  iscl = 0
216 *
217 * compute residual and scale it
218 *
219  CALL dlacpy( 'All', nrows, nrhs, b, ldb, c, ldb )
220  CALL dgemm( trans, 'No transpose', nrows, nrhs, ncols, -one, a,
221  $ lda, x, ldx, one, c, ldb )
222  normrs = dlange( 'Max', nrows, nrhs, c, ldb, rwork )
223  IF( normrs.GT.smlnum ) THEN
224  iscl = 1
225  CALL dlascl( 'General', 0, 0, normrs, one, nrows, nrhs, c, ldb,
226  $ info )
227  END IF
228 *
229 * compute R'*A
230 *
231  CALL dgemm( 'Transpose', trans, nrhs, ncols, nrows, one, c, ldb,
232  $ a, lda, zero, work, nrhs )
233 *
234 * compute and properly scale error
235 *
236  err = dlange( 'One-norm', nrhs, ncols, work, nrhs, rwork )
237  IF( norma.NE.zero )
238  $ err = err / norma
239 *
240  IF( iscl.EQ.1 )
241  $ err = err*normrs
242 *
243  IF( iresid.EQ.1 ) THEN
244  normb = dlange( 'One-norm', nrows, nrhs, b, ldb, rwork )
245  IF( normb.NE.zero )
246  $ err = err / normb
247  ELSE
248  IF( normrs.NE.zero )
249  $ err = err / normrs
250  END IF
251 *
252  dqrt17 = err / ( dlamch( 'Epsilon' )*dble( max( m, n, nrhs ) ) )
253  RETURN
254 *
255 * End of DQRT17
256 *
double precision function dlamch(CMACH)
DLAMCH
Definition: dlamch.f:69
subroutine dlascl(TYPE, KL, KU, CFROM, CTO, M, N, A, LDA, INFO)
DLASCL multiplies a general rectangular matrix by a real scalar defined as cto/cfrom.
Definition: dlascl.f:143
subroutine dlacpy(UPLO, M, N, A, LDA, B, LDB)
DLACPY copies all or part of one two-dimensional array to another.
Definition: dlacpy.f:103
subroutine xerbla(SRNAME, INFO)
XERBLA
Definition: xerbla.f:60
logical function lsame(CA, CB)
LSAME
Definition: lsame.f:53
subroutine dgemm(TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC)
DGEMM
Definition: dgemm.f:187
double precision function dqrt17(TRANS, IRESID, M, N, NRHS, A, LDA, X, LDX, B, LDB, C, WORK, LWORK)
DQRT17
Definition: dqrt17.f:150
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
Here is the call graph for this function: