LAPACK  3.10.0
LAPACK: Linear Algebra PACKage

◆ dtbt02()

subroutine dtbt02 ( character  UPLO,
character  TRANS,
character  DIAG,
integer  N,
integer  KD,
integer  NRHS,
double precision, dimension( ldab, * )  AB,
integer  LDAB,
double precision, dimension( ldx, * )  X,
integer  LDX,
double precision, dimension( ldb, * )  B,
integer  LDB,
double precision, dimension( * )  WORK,
double precision  RESID 
)

DTBT02

Purpose:
 DTBT02 computes the residual for the computed solution to a
 triangular system of linear equations  A*x = b  or  A' *x = b when
 A is a triangular band matrix.  Here A' is the transpose of A and
 x and b are N by NRHS matrices.  The test ratio is the maximum over
 the number of right hand sides of
    norm(b - op(A)*x) / ( norm(op(A)) * norm(x) * EPS ),
 where op(A) denotes A or A' and EPS is the machine epsilon.
 The norm used is the 1-norm.
Parameters
[in]UPLO
          UPLO is CHARACTER*1
          Specifies whether the matrix A is upper or lower triangular.
          = 'U':  Upper triangular
          = 'L':  Lower triangular
[in]TRANS
          TRANS is CHARACTER*1
          Specifies the operation applied to A.
          = 'N':  A    * X = B  (No transpose)
          = 'T':  A**T * X = B  (Transpose)
          = 'C':  A**H * X = B  (Conjugate transpose = Transpose)
[in]DIAG
          DIAG is CHARACTER*1
          Specifies whether or not the matrix A is unit triangular.
          = 'N':  Non-unit triangular
          = 'U':  Unit triangular
[in]N
          N is INTEGER
          The order of the matrix A.  N >= 0.
[in]KD
          KD is INTEGER
          The number of superdiagonals or subdiagonals of the
          triangular band matrix A.  KD >= 0.
[in]NRHS
          NRHS is INTEGER
          The number of right hand sides, i.e., the number of columns
          of the matrices X and B.  NRHS >= 0.
[in]AB
          AB is DOUBLE PRECISION array, dimension (LDAB,N)
          The upper or lower triangular band matrix A, stored in the
          first kd+1 rows of the array. The j-th column of A is stored
          in the j-th column of the array AB as follows:
          if UPLO = 'U', AB(kd+1+i-j,j) = A(i,j) for max(1,j-kd)<=i<=j;
          if UPLO = 'L', AB(1+i-j,j)    = A(i,j) for j<=i<=min(n,j+kd).
[in]LDAB
          LDAB is INTEGER
          The leading dimension of the array AB.  LDAB >= KD+1.
[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.  LDX >= max(1,N).
[in]B
          B is DOUBLE PRECISION array, dimension (LDB,NRHS)
          The right hand side vectors for the system of linear
          equations.
[in]LDB
          LDB is INTEGER
          The leading dimension of the array B.  LDB >= max(1,N).
[out]WORK
          WORK is DOUBLE PRECISION array, dimension (N)
[out]RESID
          RESID is DOUBLE PRECISION
          The maximum over the number of right hand sides of
          norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 153 of file dtbt02.f.

155 *
156 * -- LAPACK test routine --
157 * -- LAPACK is a software package provided by Univ. of Tennessee, --
158 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
159 *
160 * .. Scalar Arguments ..
161  CHARACTER DIAG, TRANS, UPLO
162  INTEGER KD, LDAB, LDB, LDX, N, NRHS
163  DOUBLE PRECISION RESID
164 * ..
165 * .. Array Arguments ..
166  DOUBLE PRECISION AB( LDAB, * ), B( LDB, * ), WORK( * ),
167  $ X( LDX, * )
168 * ..
169 *
170 * =====================================================================
171 *
172 * .. Parameters ..
173  DOUBLE PRECISION ZERO, ONE
174  parameter( zero = 0.0d+0, one = 1.0d+0 )
175 * ..
176 * .. Local Scalars ..
177  INTEGER J
178  DOUBLE PRECISION ANORM, BNORM, EPS, XNORM
179 * ..
180 * .. External Functions ..
181  LOGICAL LSAME
182  DOUBLE PRECISION DASUM, DLAMCH, DLANTB
183  EXTERNAL lsame, dasum, dlamch, dlantb
184 * ..
185 * .. External Subroutines ..
186  EXTERNAL daxpy, dcopy, dtbmv
187 * ..
188 * .. Intrinsic Functions ..
189  INTRINSIC max
190 * ..
191 * .. Executable Statements ..
192 *
193 * Quick exit if N = 0 or NRHS = 0
194 *
195  IF( n.LE.0 .OR. nrhs.LE.0 ) THEN
196  resid = zero
197  RETURN
198  END IF
199 *
200 * Compute the 1-norm of op(A).
201 *
202  IF( lsame( trans, 'N' ) ) THEN
203  anorm = dlantb( '1', uplo, diag, n, kd, ab, ldab, work )
204  ELSE
205  anorm = dlantb( 'I', uplo, diag, n, kd, ab, ldab, work )
206  END IF
207 *
208 * Exit with RESID = 1/EPS if ANORM = 0.
209 *
210  eps = dlamch( 'Epsilon' )
211  IF( anorm.LE.zero ) THEN
212  resid = one / eps
213  RETURN
214  END IF
215 *
216 * Compute the maximum over the number of right hand sides of
217 * norm(B - op(A)*X) / ( norm(op(A)) * norm(X) * EPS ).
218 *
219  resid = zero
220  DO 10 j = 1, nrhs
221  CALL dcopy( n, x( 1, j ), 1, work, 1 )
222  CALL dtbmv( uplo, trans, diag, n, kd, ab, ldab, work, 1 )
223  CALL daxpy( n, -one, b( 1, j ), 1, work, 1 )
224  bnorm = dasum( n, work, 1 )
225  xnorm = dasum( n, x( 1, j ), 1 )
226  IF( xnorm.LE.zero ) THEN
227  resid = one / eps
228  ELSE
229  resid = max( resid, ( ( bnorm / anorm ) / xnorm ) / eps )
230  END IF
231  10 CONTINUE
232 *
233  RETURN
234 *
235 * End of DTBT02
236 *
double precision function dlamch(CMACH)
DLAMCH
Definition: dlamch.f:69
logical function lsame(CA, CB)
LSAME
Definition: lsame.f:53
subroutine dcopy(N, DX, INCX, DY, INCY)
DCOPY
Definition: dcopy.f:82
double precision function dasum(N, DX, INCX)
DASUM
Definition: dasum.f:71
subroutine daxpy(N, DA, DX, INCX, DY, INCY)
DAXPY
Definition: daxpy.f:89
subroutine dtbmv(UPLO, TRANS, DIAG, N, K, A, LDA, X, INCX)
DTBMV
Definition: dtbmv.f:186
double precision function dlantb(NORM, UPLO, DIAG, N, K, AB, LDAB, WORK)
DLANTB returns the value of the 1-norm, or the Frobenius norm, or the infinity norm,...
Definition: dlantb.f:140
Here is the call graph for this function:
Here is the caller graph for this function: