LAPACK  3.5.0
LAPACK: Linear Algebra PACKage
ctzt02.f File Reference

Go to the source code of this file.

Functions/Subroutines

real function ctzt02 (M, N, AF, LDA, TAU, WORK, LWORK)
 CTZT02 More...
 

Function/Subroutine Documentation

real function ctzt02 ( integer  M,
integer  N,
complex, dimension( lda, * )  AF,
integer  LDA,
complex, dimension( * )  TAU,
complex, dimension( lwork )  WORK,
integer  LWORK 
)

CTZT02

Purpose:
 CTZT02 returns
      || I - Q'*Q || / ( M * eps)
 where the matrix Q is defined by the Householder transformations
 generated by CTZRQF.
Parameters
[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 array, dimension (LDA,N)
          The output of CTZRQF.
[in]LDA
          LDA is INTEGER
          The leading dimension of the array AF.
[in]TAU
          TAU is COMPLEX array, dimension (M)
          Details of the Householder transformations as returned by
          CTZRQF.
[out]WORK
          WORK is COMPLEX array, dimension (LWORK)
[in]LWORK
          LWORK is INTEGER
          length of WORK array. Must be >= N*N+N
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011

Definition at line 93 of file ctzt02.f.

93 *
94 * -- LAPACK test routine (version 3.4.0) --
95 * -- LAPACK is a software package provided by Univ. of Tennessee, --
96 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
97 * November 2011
98 *
99 * .. Scalar Arguments ..
100  INTEGER lda, lwork, m, n
101 * ..
102 * .. Array Arguments ..
103  COMPLEX af( lda, * ), tau( * ), work( lwork )
104 * ..
105 *
106 * =====================================================================
107 *
108 * .. Parameters ..
109  REAL zero, one
110  parameter( zero = 0.0e0, one = 1.0e0 )
111 * ..
112 * .. Local Scalars ..
113  INTEGER i
114 * ..
115 * .. Local Arrays ..
116  REAL rwork( 1 )
117 * ..
118 * .. External Functions ..
119  REAL clange, slamch
120  EXTERNAL clange, slamch
121 * ..
122 * .. External Subroutines ..
123  EXTERNAL clatzm, claset, xerbla
124 * ..
125 * .. Intrinsic Functions ..
126  INTRINSIC cmplx, conjg, max, real
127 * ..
128 * .. Executable Statements ..
129 *
130  ctzt02 = zero
131 *
132  IF( lwork.LT.n*n+n ) THEN
133  CALL xerbla( 'CTZT02', 7 )
134  RETURN
135  END IF
136 *
137 * Quick return if possible
138 *
139  IF( m.LE.0 .OR. n.LE.0 )
140  $ RETURN
141 *
142 * Q := I
143 *
144  CALL claset( 'Full', n, n, cmplx( zero ), cmplx( one ), work, n )
145 *
146 * Q := P(1) * ... * P(m) * Q
147 *
148  DO 10 i = m, 1, -1
149  CALL clatzm( 'Left', n-m+1, n, af( i, m+1 ), lda, tau( i ),
150  $ work( i ), work( m+1 ), n, work( n*n+1 ) )
151  10 CONTINUE
152 *
153 * Q := P(m)' * ... * P(1)' * Q
154 *
155  DO 20 i = 1, m
156  CALL clatzm( 'Left', n-m+1, n, af( i, m+1 ), lda,
157  $ conjg( tau( i ) ), work( i ), work( m+1 ), n,
158  $ work( n*n+1 ) )
159  20 CONTINUE
160 *
161 * Q := Q - I
162 *
163  DO 30 i = 1, n
164  work( ( i-1 )*n+i ) = work( ( i-1 )*n+i ) - one
165  30 CONTINUE
166 *
167  ctzt02 = clange( 'One-norm', n, n, work, n, rwork ) /
168  $ ( slamch( 'Epsilon' )*REAL( MAX( M, N ) ) )
169  RETURN
170 *
171 * End of CTZT02
172 *
subroutine claset(UPLO, M, N, ALPHA, BETA, A, LDA)
CLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values...
Definition: claset.f:108
real function clange(NORM, M, N, A, LDA, WORK)
CLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value ...
Definition: clange.f:117
subroutine xerbla(SRNAME, INFO)
XERBLA
Definition: xerbla.f:62
subroutine clatzm(SIDE, M, N, V, INCV, TAU, C1, C2, LDC, WORK)
CLATZM
Definition: clatzm.f:154
real function ctzt02(M, N, AF, LDA, TAU, WORK, LWORK)
CTZT02
Definition: ctzt02.f:93
real function slamch(CMACH)
SLAMCH
Definition: slamch.f:69

Here is the call graph for this function: