LAPACK 3.3.0

dget08.f

Go to the documentation of this file.
00001       SUBROUTINE DGET08( TRANS, M, N, NRHS, A, LDA, X, LDX, B, LDB,
00002      $                   RWORK, RESID )
00003 *
00004 *  -- LAPACK test routine (version 3.1) --
00005 *     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
00006 *     June 2010
00007 *
00008 *     .. Scalar Arguments ..
00009       CHARACTER          TRANS
00010       INTEGER            LDA, LDB, LDX, M, N, NRHS
00011       DOUBLE PRECISION   RESID
00012 *     ..
00013 *     .. Array Arguments ..
00014       DOUBLE PRECISION   A( LDA, * ), B( LDB, * ), RWORK( * ),
00015      $                   X( LDX, * )
00016 *     ..
00017 *
00018 *  Purpose
00019 *  =======
00020 *
00021 *  DGET08 computes the residual for a solution of a system of linear
00022 *  equations  A*x = b  or  A'*x = b:
00023 *     RESID = norm(B - A*X,inf) / ( norm(A,inf) * norm(X,inf) * EPS ),
00024 *  where EPS is the machine epsilon.
00025 *
00026 *  Arguments
00027 *  =========
00028 *
00029 *  TRANS   (input) CHARACTER*1
00030 *          Specifies the form of the system of equations:
00031 *          = 'N':  A *x = b
00032 *          = 'T':  A'*x = b, where A' is the transpose of A
00033 *          = 'C':  A'*x = b, where A' is the transpose of A
00034 *
00035 *  M       (input) INTEGER
00036 *          The number of rows of the matrix A.  M >= 0.
00037 *
00038 *  N       (input) INTEGER
00039 *          The number of columns of the matrix A.  N >= 0.
00040 *
00041 *  NRHS    (input) INTEGER
00042 *          The number of columns of B, the matrix of right hand sides.
00043 *          NRHS >= 0.
00044 *
00045 *  A       (input) DOUBLE PRECISION array, dimension (LDA,N)
00046 *          The original M x N matrix A.
00047 *
00048 *  LDA     (input) INTEGER
00049 *          The leading dimension of the array A.  LDA >= max(1,M).
00050 *
00051 *  X       (input) DOUBLE PRECISION array, dimension (LDX,NRHS)
00052 *          The computed solution vectors for the system of linear
00053 *          equations.
00054 *
00055 *  LDX     (input) INTEGER
00056 *          The leading dimension of the array X.  If TRANS = 'N',
00057 *          LDX >= max(1,N); if TRANS = 'T' or 'C', LDX >= max(1,M).
00058 *
00059 *  B       (input/output) DOUBLE PRECISION array, dimension (LDB,NRHS)
00060 *          On entry, the right hand side vectors for the system of
00061 *          linear equations.
00062 *          On exit, B is overwritten with the difference B - A*X.
00063 *
00064 *  LDB     (input) INTEGER
00065 *          The leading dimension of the array B.  IF TRANS = 'N',
00066 *          LDB >= max(1,M); if TRANS = 'T' or 'C', LDB >= max(1,N).
00067 *
00068 *  RWORK   (workspace) DOUBLE PRECISION array, dimension (M)
00069 *
00070 *  RESID   (output) DOUBLE PRECISION
00071 *          The maximum over the number of right hand sides of
00072 *          norm(B - A*X) / ( norm(A) * norm(X) * EPS ).
00073 *
00074 *  =====================================================================
00075 *
00076 *     .. Parameters ..
00077       DOUBLE PRECISION   ZERO, ONE
00078       PARAMETER          ( ZERO = 0.0D+0, ONE = 1.0D+0 )
00079 *     ..
00080 *     .. Local Scalars ..
00081       INTEGER            J, N1, N2
00082       DOUBLE PRECISION   ANORM, BNORM, EPS, XNORM
00083 *     ..
00084 *     .. External Functions ..
00085       LOGICAL            LSAME
00086       INTEGER            IDAMAX
00087       DOUBLE PRECISION   DLAMCH, DLANGE
00088       EXTERNAL           LSAME, IDAMAX, DLAMCH, DLANGE
00089 *     ..
00090 *     .. External Subroutines ..
00091       EXTERNAL           DGEMM
00092 *     ..
00093 *     .. Intrinsic Functions ..
00094       INTRINSIC          MAX, ABS
00095 *     ..
00096 *     .. Executable Statements ..
00097 *
00098 *     Quick exit if M = 0 or N = 0 or NRHS = 0
00099 *
00100       IF( M.LE.0 .OR. N.LE.0 .OR. NRHS.EQ.0 ) THEN
00101          RESID = ZERO
00102          RETURN
00103       END IF
00104 *
00105       IF( LSAME( TRANS, 'T' ) .OR. LSAME( TRANS, 'C' ) ) THEN
00106          N1 = N
00107          N2 = M
00108       ELSE
00109          N1 = M
00110          N2 = N
00111       END IF
00112 *
00113 *     Exit with RESID = 1/EPS if ANORM = 0.
00114 *
00115       EPS = DLAMCH( 'Epsilon' )
00116       ANORM = DLANGE( 'I', N1, N2, A, LDA, RWORK )
00117       IF( ANORM.LE.ZERO ) THEN
00118          RESID = ONE / EPS
00119          RETURN
00120       END IF
00121 *
00122 *     Compute  B - A*X  (or  B - A'*X ) and store in B.
00123 *
00124       CALL DGEMM( TRANS, 'No transpose', N1, NRHS, N2, -ONE, A, LDA, X,
00125      $            LDX, ONE, B, LDB )
00126 *
00127 *     Compute the maximum over the number of right hand sides of
00128 *        norm(B - A*X) / ( norm(A) * norm(X) * EPS ) .
00129 *
00130       RESID = ZERO
00131       DO 10 J = 1, NRHS
00132          BNORM = ABS(B(IDAMAX( N1, B( 1, J ), 1 ),J))
00133          XNORM = ABS(X(IDAMAX( N2, X( 1, J ), 1 ),J))
00134          IF( XNORM.LE.ZERO ) THEN
00135             RESID = ONE / EPS
00136          ELSE
00137             RESID = MAX( RESID, ( ( BNORM / ANORM ) / XNORM ) / EPS )
00138          END IF
00139    10 CONTINUE
00140 *
00141       RETURN
00142 *
00143 *     End of DGET02
00144 *
00145       END
 All Files Functions