#include "f2c.h" #include "blaswrap.h" /* Table of constant values */ static integer c__1 = 1; /* Subroutine */ int ctrt01_(char *uplo, char *diag, integer *n, complex *a, integer *lda, complex *ainv, integer *ldainv, real *rcond, real * rwork, real *resid) { /* System generated locals */ integer a_dim1, a_offset, ainv_dim1, ainv_offset, i__1, i__2, i__3; complex q__1; /* Local variables */ integer j; real eps; extern logical lsame_(char *, char *); real anorm; extern /* Subroutine */ int ctrmv_(char *, char *, char *, integer *, complex *, integer *, complex *, integer *); extern doublereal slamch_(char *), clantr_(char *, char *, char *, integer *, integer *, complex *, integer *, real *); real ainvnm; /* -- LAPACK test routine (version 3.1) -- */ /* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */ /* November 2006 */ /* .. Scalar Arguments .. */ /* .. */ /* .. Array Arguments .. */ /* .. */ /* Purpose */ /* ======= */ /* CTRT01 computes the residual for a triangular matrix A times its */ /* inverse: */ /* RESID = norm( A*AINV - I ) / ( N * norm(A) * norm(AINV) * EPS ), */ /* where EPS is the machine epsilon. */ /* Arguments */ /* ========== */ /* UPLO (input) CHARACTER*1 */ /* Specifies whether the matrix A is upper or lower triangular. */ /* = 'U': Upper triangular */ /* = 'L': Lower triangular */ /* DIAG (input) CHARACTER*1 */ /* Specifies whether or not the matrix A is unit triangular. */ /* = 'N': Non-unit triangular */ /* = 'U': Unit triangular */ /* N (input) INTEGER */ /* The order of the matrix A. N >= 0. */ /* A (input) COMPLEX array, dimension (LDA,N) */ /* The triangular matrix A. If UPLO = 'U', the leading n by n */ /* upper triangular part of the array A contains the upper */ /* triangular matrix, and the strictly lower triangular part of */ /* A is not referenced. If UPLO = 'L', the leading n by n lower */ /* triangular part of the array A contains the lower triangular */ /* matrix, and the strictly upper triangular part of A is not */ /* referenced. If DIAG = 'U', the diagonal elements of A are */ /* also not referenced and are assumed to be 1. */ /* LDA (input) INTEGER */ /* The leading dimension of the array A. LDA >= max(1,N). */ /* AINV (input) COMPLEX array, dimension (LDAINV,N) */ /* On entry, the (triangular) inverse of the matrix A, in the */ /* same storage format as A. */ /* On exit, the contents of AINV are destroyed. */ /* LDAINV (input) INTEGER */ /* The leading dimension of the array AINV. LDAINV >= max(1,N). */ /* RCOND (output) REAL */ /* The reciprocal condition number of A, computed as */ /* 1/(norm(A) * norm(AINV)). */ /* RWORK (workspace) REAL array, dimension (N) */ /* RESID (output) REAL */ /* norm(A*AINV - I) / ( N * norm(A) * norm(AINV) * EPS ) */ /* ===================================================================== */ /* .. Parameters .. */ /* .. */ /* .. Local Scalars .. */ /* .. */ /* .. External Functions .. */ /* .. */ /* .. External Subroutines .. */ /* .. */ /* .. Intrinsic Functions .. */ /* .. */ /* .. Executable Statements .. */ /* Quick exit if N = 0 */ /* Parameter adjustments */ a_dim1 = *lda; a_offset = 1 + a_dim1; a -= a_offset; ainv_dim1 = *ldainv; ainv_offset = 1 + ainv_dim1; ainv -= ainv_offset; --rwork; /* Function Body */ if (*n <= 0) { *rcond = 1.f; *resid = 0.f; return 0; } /* Exit with RESID = 1/EPS if ANORM = 0 or AINVNM = 0. */ eps = slamch_("Epsilon"); anorm = clantr_("1", uplo, diag, n, n, &a[a_offset], lda, &rwork[1]); ainvnm = clantr_("1", uplo, diag, n, n, &ainv[ainv_offset], ldainv, & rwork[1]); if (anorm <= 0.f || ainvnm <= 0.f) { *rcond = 0.f; *resid = 1.f / eps; return 0; } *rcond = 1.f / anorm / ainvnm; /* Set the diagonal of AINV to 1 if AINV has unit diagonal. */ if (lsame_(diag, "U")) { i__1 = *n; for (j = 1; j <= i__1; ++j) { i__2 = j + j * ainv_dim1; ainv[i__2].r = 1.f, ainv[i__2].i = 0.f; /* L10: */ } } /* Compute A * AINV, overwriting AINV. */ if (lsame_(uplo, "U")) { i__1 = *n; for (j = 1; j <= i__1; ++j) { ctrmv_("Upper", "No transpose", diag, &j, &a[a_offset], lda, & ainv[j * ainv_dim1 + 1], &c__1); /* L20: */ } } else { i__1 = *n; for (j = 1; j <= i__1; ++j) { i__2 = *n - j + 1; ctrmv_("Lower", "No transpose", diag, &i__2, &a[j + j * a_dim1], lda, &ainv[j + j * ainv_dim1], &c__1); /* L30: */ } } /* Subtract 1 from each diagonal element to form A*AINV - I. */ i__1 = *n; for (j = 1; j <= i__1; ++j) { i__2 = j + j * ainv_dim1; i__3 = j + j * ainv_dim1; q__1.r = ainv[i__3].r - 1.f, q__1.i = ainv[i__3].i; ainv[i__2].r = q__1.r, ainv[i__2].i = q__1.i; /* L40: */ } /* Compute norm(A*AINV - I) / (N * norm(A) * norm(AINV) * EPS) */ *resid = clantr_("1", uplo, "Non-unit", n, n, &ainv[ainv_offset], ldainv, &rwork[1]); *resid = *resid * *rcond / (real) (*n) / eps; return 0; /* End of CTRT01 */ } /* ctrt01_ */