![]() |
LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
|
subroutine ctrt01 | ( | character | uplo, |
character | diag, | ||
integer | n, | ||
complex, dimension( lda, * ) | a, | ||
integer | lda, | ||
complex, dimension( ldainv, * ) | ainv, | ||
integer | ldainv, | ||
real | rcond, | ||
real, dimension( * ) | rwork, | ||
real | resid ) |
CTRT01
!> !> 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. !>
[in] | UPLO | !> UPLO is CHARACTER*1 !> Specifies whether the matrix A is upper or lower triangular. !> = 'U': Upper triangular !> = 'L': Lower triangular !> |
[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] | A | !> A is 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. !> |
[in] | LDA | !> LDA is INTEGER !> The leading dimension of the array A. LDA >= max(1,N). !> |
[in] | AINV | !> AINV is 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. !> |
[in] | LDAINV | !> LDAINV is INTEGER !> The leading dimension of the array AINV. LDAINV >= max(1,N). !> |
[out] | RCOND | !> RCOND is REAL !> The reciprocal condition number of A, computed as !> 1/(norm(A) * norm(AINV)). !> |
[out] | RWORK | !> RWORK is REAL array, dimension (N) !> |
[out] | RESID | !> RESID is REAL !> norm(A*AINV - I) / ( N * norm(A) * norm(AINV) * EPS ) !> |
Definition at line 123 of file ctrt01.f.