LAPACK  3.9.1
LAPACK: Linear Algebra PACKage

◆ sqrt17()

real function sqrt17 ( character  TRANS,
integer  IRESID,
integer  M,
integer  N,
integer  NRHS,
real, dimension( lda, * )  A,
integer  LDA,
real, dimension( ldx, * )  X,
integer  LDX,
real, dimension( ldb, * )  B,
integer  LDB,
real, dimension( ldb, * )  C,
real, dimension( lwork )  WORK,
integer  LWORK 
)

SQRT17

Purpose:
 SQRT17 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 REAL 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 REAL 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 REAL 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 REAL array, dimension (LDB,NRHS)
[out]WORK
          WORK is REAL 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 sqrt17.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  REAL A( LDA, * ), B( LDB, * ), C( LDB, * ),
161  $ WORK( LWORK ), X( LDX, * )
162 * ..
163 *
164 * =====================================================================
165 *
166 * .. Parameters ..
167  REAL ZERO, ONE
168  parameter( zero = 0.0e0, one = 1.0e0 )
169 * ..
170 * .. Local Scalars ..
171  INTEGER INFO, ISCL, NCOLS, NROWS
172  REAL BIGNUM, ERR, NORMA, NORMB, NORMRS, SMLNUM
173 * ..
174 * .. Local Arrays ..
175  REAL RWORK( 1 )
176 * ..
177 * .. External Functions ..
178  LOGICAL LSAME
179  REAL SLAMCH, SLANGE
180  EXTERNAL lsame, slamch, slange
181 * ..
182 * .. External Subroutines ..
183  EXTERNAL sgemm, slacpy, slascl, xerbla
184 * ..
185 * .. Intrinsic Functions ..
186  INTRINSIC max, real
187 * ..
188 * .. Executable Statements ..
189 *
190  sqrt17 = 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( 'SQRT17', 1 )
200  RETURN
201  END IF
202 *
203  IF( lwork.LT.ncols*nrhs ) THEN
204  CALL xerbla( 'SQRT17', 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 = slange( 'One-norm', m, n, a, lda, rwork )
213  smlnum = slamch( 'Safe minimum' ) / slamch( 'Precision' )
214  bignum = one / smlnum
215  iscl = 0
216 *
217 * compute residual and scale it
218 *
219  CALL slacpy( 'All', nrows, nrhs, b, ldb, c, ldb )
220  CALL sgemm( trans, 'No transpose', nrows, nrhs, ncols, -one, a,
221  $ lda, x, ldx, one, c, ldb )
222  normrs = slange( 'Max', nrows, nrhs, c, ldb, rwork )
223  IF( normrs.GT.smlnum ) THEN
224  iscl = 1
225  CALL slascl( 'General', 0, 0, normrs, one, nrows, nrhs, c, ldb,
226  $ info )
227  END IF
228 *
229 * compute R'*A
230 *
231  CALL sgemm( 'Transpose', trans, nrhs, ncols, nrows, one, c, ldb,
232  $ a, lda, zero, work, nrhs )
233 *
234 * compute and properly scale error
235 *
236  err = slange( '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 = slange( '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  sqrt17 = err / ( slamch( 'Epsilon' )*real( max( m, n, nrhs ) ) )
253  RETURN
254 *
255 * End of SQRT17
256 *
subroutine slascl(TYPE, KL, KU, CFROM, CTO, M, N, A, LDA, INFO)
SLASCL multiplies a general rectangular matrix by a real scalar defined as cto/cfrom.
Definition: slascl.f:143
subroutine slacpy(UPLO, M, N, A, LDA, B, LDB)
SLACPY copies all or part of one two-dimensional array to another.
Definition: slacpy.f:103
subroutine xerbla(SRNAME, INFO)
XERBLA
Definition: xerbla.f:60
logical function lsame(CA, CB)
LSAME
Definition: lsame.f:53
real function slange(NORM, M, N, A, LDA, WORK)
SLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value ...
Definition: slange.f:114
subroutine sgemm(TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC)
SGEMM
Definition: sgemm.f:187
real function sqrt17(TRANS, IRESID, M, N, NRHS, A, LDA, X, LDX, B, LDB, C, WORK, LWORK)
SQRT17
Definition: sqrt17.f:150
real function slamch(CMACH)
SLAMCH
Definition: slamch.f:68
Here is the call graph for this function: