LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
crzt02.f
Go to the documentation of this file.
1 *> \brief \b CRZT02
2 *
3 * =========== DOCUMENTATION ===========
4 *
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
7 *
8 * Definition:
9 * ===========
10 *
11 * REAL FUNCTION CRZT02( M, N, AF, LDA, TAU, WORK,
12 * LWORK )
13 *
14 * .. Scalar Arguments ..
15 * INTEGER LDA, LWORK, M, N
16 * ..
17 * .. Array Arguments ..
18 * COMPLEX AF( LDA, * ), TAU( * ), WORK( LWORK )
19 * ..
20 *
21 *
22 *> \par Purpose:
23 * =============
24 *>
25 *> \verbatim
26 *>
27 *> CRZT02 returns
28 *> || I - Q'*Q || / ( M * eps)
29 *> where the matrix Q is defined by the Householder transformations
30 *> generated by CTZRZF.
31 *> \endverbatim
32 *
33 * Arguments:
34 * ==========
35 *
36 *> \param[in] M
37 *> \verbatim
38 *> M is INTEGER
39 *> The number of rows of the matrix AF.
40 *> \endverbatim
41 *>
42 *> \param[in] N
43 *> \verbatim
44 *> N is INTEGER
45 *> The number of columns of the matrix AF.
46 *> \endverbatim
47 *>
48 *> \param[in] AF
49 *> \verbatim
50 *> AF is COMPLEX array, dimension (LDA,N)
51 *> The output of CTZRZF.
52 *> \endverbatim
53 *>
54 *> \param[in] LDA
55 *> \verbatim
56 *> LDA is INTEGER
57 *> The leading dimension of the array AF.
58 *> \endverbatim
59 *>
60 *> \param[in] TAU
61 *> \verbatim
62 *> TAU is COMPLEX array, dimension (M)
63 *> Details of the Householder transformations as returned by
64 *> CTZRZF.
65 *> \endverbatim
66 *>
67 *> \param[out] WORK
68 *> \verbatim
69 *> WORK is COMPLEX array, dimension (LWORK)
70 *> \endverbatim
71 *>
72 *> \param[in] LWORK
73 *> \verbatim
74 *> LWORK is INTEGER
75 *> Length of WORK array. LWORK >= N*N+N.
76 *> \endverbatim
77 *
78 * Authors:
79 * ========
80 *
81 *> \author Univ. of Tennessee
82 *> \author Univ. of California Berkeley
83 *> \author Univ. of Colorado Denver
84 *> \author NAG Ltd.
85 *
86 *> \date November 2011
87 *
88 *> \ingroup complex_lin
89 *
90 * =====================================================================
91  REAL FUNCTION crzt02( M, N, AF, LDA, TAU, WORK,
92  $ lwork )
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, INFO
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 claset, cunmrz, xerbla
124 * ..
125 * .. Intrinsic Functions ..
126  INTRINSIC cmplx, max, real
127 * ..
128 * .. Executable Statements ..
129 *
130  crzt02 = zero
131 *
132  IF( lwork.LT.n*n+n ) THEN
133  CALL xerbla( 'CRZT02', 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  CALL cunmrz( 'Left', 'No transpose', n, n, m, n-m, af, lda, tau,
149  $ work, n, work( n*n+1 ), lwork-n*n, info )
150 *
151 * Q := P(m)' * ... * P(1)' * Q
152 *
153  CALL cunmrz( 'Left', 'Conjugate transpose', n, n, m, n-m, af, lda,
154  $ tau, work, n, work( n*n+1 ), lwork-n*n, info )
155 *
156 * Q := Q - I
157 *
158  DO 10 i = 1, n
159  work( ( i-1 )*n+i ) = work( ( i-1 )*n+i ) - one
160  10 CONTINUE
161 *
162  crzt02 = clange( 'One-norm', n, n, work, n, rwork ) /
163  $ ( slamch( 'Epsilon' )*REAL( MAX( M, N ) ) )
164  RETURN
165 *
166 * End of CRZT02
167 *
168  END
real function crzt02(M, N, AF, LDA, TAU, WORK, LWORK)
CRZT02
Definition: crzt02.f:93
subroutine xerbla(SRNAME, INFO)
XERBLA
Definition: xerbla.f:62
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
subroutine cunmrz(SIDE, TRANS, M, N, K, L, A, LDA, TAU, C, LDC, WORK, LWORK, INFO)
CUNMRZ
Definition: cunmrz.f:189