LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
double precision function drzt01 ( integer  M,
integer  N,
double precision, dimension( lda, * )  A,
double precision, dimension( lda, * )  AF,
integer  LDA,
double precision, dimension( * )  TAU,
double precision, dimension( lwork )  WORK,
integer  LWORK 
)

DRZT01

Purpose:
 DRZT01 returns
      || A - R*Q || / ( M * eps * ||A|| )
 for an upper trapezoidal A that was factored with DTZRZF.
Parameters
[in]M
          M is INTEGER
          The number of rows of the matrices A and AF.
[in]N
          N is INTEGER
          The number of columns of the matrices A and AF.
[in]A
          A is DOUBLE PRECISION array, dimension (LDA,N)
          The original upper trapezoidal M by N matrix A.
[in]AF
          AF is DOUBLE PRECISION array, dimension (LDA,N)
          The output of DTZRZF for input matrix A.
          The lower triangle is not referenced.
[in]LDA
          LDA is INTEGER
          The leading dimension of the arrays A and AF.
[in]TAU
          TAU is DOUBLE PRECISION array, dimension (M)
          Details of the Householder transformations as returned by
          DTZRZF.
[out]WORK
          WORK is DOUBLE PRECISION array, dimension (LWORK)
[in]LWORK
          LWORK is INTEGER
          The length of the array WORK.  LWORK >= m*n + m*nb.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011

Definition at line 100 of file drzt01.f.

100 *
101 * -- LAPACK test routine (version 3.4.0) --
102 * -- LAPACK is a software package provided by Univ. of Tennessee, --
103 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
104 * November 2011
105 *
106 * .. Scalar Arguments ..
107  INTEGER lda, lwork, m, n
108 * ..
109 * .. Array Arguments ..
110  DOUBLE PRECISION a( lda, * ), af( lda, * ), tau( * ),
111  $ work( lwork )
112 * ..
113 *
114 * =====================================================================
115 *
116 * .. Parameters ..
117  DOUBLE PRECISION zero, one
118  parameter ( zero = 0.0d+0, one = 1.0d+0 )
119 * ..
120 * .. Local Scalars ..
121  INTEGER i, info, j
122  DOUBLE PRECISION norma
123 * ..
124 * .. Local Arrays ..
125  DOUBLE PRECISION rwork( 1 )
126 * ..
127 * .. External Functions ..
128  DOUBLE PRECISION dlamch, dlange
129  EXTERNAL dlamch, dlange
130 * ..
131 * .. External Subroutines ..
132  EXTERNAL daxpy, dlaset, dormrz, xerbla
133 * ..
134 * .. Intrinsic Functions ..
135  INTRINSIC dble, max
136 * ..
137 * .. Executable Statements ..
138 *
139  drzt01 = zero
140 *
141  IF( lwork.LT.m*n+m ) THEN
142  CALL xerbla( 'DRZT01', 8 )
143  RETURN
144  END IF
145 *
146 * Quick return if possible
147 *
148  IF( m.LE.0 .OR. n.LE.0 )
149  $ RETURN
150 *
151  norma = dlange( 'One-norm', m, n, a, lda, rwork )
152 *
153 * Copy upper triangle R
154 *
155  CALL dlaset( 'Full', m, n, zero, zero, work, m )
156  DO 20 j = 1, m
157  DO 10 i = 1, j
158  work( ( j-1 )*m+i ) = af( i, j )
159  10 CONTINUE
160  20 CONTINUE
161 *
162 * R = R * P(1) * ... *P(m)
163 *
164  CALL dormrz( 'Right', 'No tranpose', m, n, m, n-m, af, lda, tau,
165  $ work, m, work( m*n+1 ), lwork-m*n, info )
166 *
167 * R = R - A
168 *
169  DO 30 i = 1, n
170  CALL daxpy( m, -one, a( 1, i ), 1, work( ( i-1 )*m+1 ), 1 )
171  30 CONTINUE
172 *
173  drzt01 = dlange( 'One-norm', m, n, work, m, rwork )
174 *
175  drzt01 = drzt01 / ( dlamch( 'Epsilon' )*dble( max( m, n ) ) )
176  IF( norma.NE.zero )
177  $ drzt01 = drzt01 / norma
178 *
179  RETURN
180 *
181 * End of DRZT01
182 *
subroutine dlaset(UPLO, M, N, ALPHA, BETA, A, LDA)
DLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values...
Definition: dlaset.f:112
double precision function dlamch(CMACH)
DLAMCH
Definition: dlamch.f:65
subroutine daxpy(N, DA, DX, INCX, DY, INCY)
DAXPY
Definition: daxpy.f:54
subroutine xerbla(SRNAME, INFO)
XERBLA
Definition: xerbla.f:62
double precision function dlange(NORM, M, N, A, LDA, WORK)
DLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value ...
Definition: dlange.f:116
subroutine dormrz(SIDE, TRANS, M, N, K, L, A, LDA, TAU, C, LDC, WORK, LWORK, INFO)
DORMRZ
Definition: dormrz.f:189
double precision function drzt01(M, N, A, AF, LDA, TAU, WORK, LWORK)
DRZT01
Definition: drzt01.f:100

Here is the call graph for this function: