LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
|
double precision function zrzt02 | ( | integer | m, |
integer | n, | ||
complex*16, dimension( lda, * ) | af, | ||
integer | lda, | ||
complex*16, dimension( * ) | tau, | ||
complex*16, dimension( lwork ) | work, | ||
integer | lwork ) |
ZRZT02
!> !> ZRZT02 returns !> || I - Q'*Q || / ( M * eps) !> where the matrix Q is defined by the Householder transformations !> generated by ZTZRZF. !>
[in] | M | !> M is INTEGER !> The number of rows of the matrix AF. !> |
[in] | N | !> N is INTEGER !> The number of columns of the matrix AF. !> |
[in] | AF | !> AF is COMPLEX*16 array, dimension (LDA,N) !> The output of ZTZRZF. !> |
[in] | LDA | !> LDA is INTEGER !> The leading dimension of the array AF. !> |
[in] | TAU | !> TAU is COMPLEX*16 array, dimension (M) !> Details of the Householder transformations as returned by !> ZTZRZF. !> |
[out] | WORK | !> WORK is COMPLEX*16 array, dimension (LWORK) !> |
[in] | LWORK | !> LWORK is INTEGER !> Length of WORK array. LWORK >= N*N+N. !> |
Definition at line 89 of file zrzt02.f.