LAPACK  3.7.0
LAPACK: Linear Algebra PACKage
subroutine sbdt05 ( integer  M,
integer  N,
real, dimension( lda, * )  A,
integer  LDA,
real, dimension( * )  S,
integer  NS,
real, dimension( ldu, * )  U,
integer  LDU,
real, dimension( ldvt, * )  VT,
integer  LDVT,
real, dimension( * )  WORK,
real  RESID 
)
Purpose:

SBDT05 reconstructs a bidiagonal matrix B from its (partial) SVD: S = U' * B * V where U and V are orthogonal matrices and S is diagonal.

The test ratio to test the singular value decomposition is RESID = norm( S - U' * B * V ) / ( n * norm(B) * EPS ) where VT = V' and EPS is the machine precision.

Parameters
[in]M
          M is INTEGER
          The number of rows of the matrices A and U.
[in]N
          N is INTEGER
          The number of columns of the matrices A and VT.
[in]A
          A is REAL array, dimension (LDA,N)
          The m by n matrix A.

 \param[in] LDA
 \verbatim
          LDA is INTEGER
          The leading dimension of the array A.  LDA >= max(1,M).
[in]S
          S is REAL array, dimension (NS)
          The singular values from the (partial) SVD of B, sorted in
          decreasing order.
[in]NS
          NS is INTEGER
          The number of singular values/vectors from the (partial)
          SVD of B.
[in]U
          U is REAL array, dimension (LDU,NS)
          The n by ns orthogonal matrix U in S = U' * B * V.
[in]LDU
          LDU is INTEGER
          The leading dimension of the array U.  LDU >= max(1,N)
[in]VT
          VT is REAL array, dimension (LDVT,N)
          The n by ns orthogonal matrix V in S = U' * B * V.
[in]LDVT
          LDVT is INTEGER
          The leading dimension of the array VT.
[out]WORK
          WORK is REAL array, dimension (M,N)
[out]RESID
          RESID is REAL
          The test ratio:  norm(S - U' * A * V) / ( n * norm(A) * EPS )
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
December 2016

Definition at line 126 of file sbdt05.f.

126 *
127 * -- LAPACK test routine (version 3.7.0) --
128 * -- LAPACK is a software package provided by Univ. of Tennessee, --
129 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
130 * December 2016
131 *
132 * .. Scalar Arguments ..
133  INTEGER lda, ldu, ldvt, m, n, ns
134  REAL resid
135 * ..
136 * .. Array Arguments ..
137  REAL a( lda, * ), s( * ), u( ldu, * ),
138  $ vt( ldvt, * ), work( * )
139 * ..
140 *
141 * ======================================================================
142 *
143 * .. Parameters ..
144  REAL zero, one
145  parameter ( zero = 0.0e+0, one = 1.0e+0 )
146 * ..
147 * .. Local Scalars ..
148  INTEGER i, j
149  REAL anorm, eps
150 * ..
151 * .. External Functions ..
152  LOGICAL lsame
153  INTEGER isamax
154  REAL sasum, slamch, slange
155  EXTERNAL lsame, isamax, sasum, slamch, slange
156 * ..
157 * .. External Subroutines ..
158  EXTERNAL sgemm
159 * ..
160 * .. Intrinsic Functions ..
161  INTRINSIC abs, REAL, max, min
162 * ..
163 * .. Executable Statements ..
164 *
165 * Quick return if possible.
166 *
167  resid = zero
168  IF( min( m, n ).LE.0 .OR. ns.LE.0 )
169  $ RETURN
170 *
171  eps = slamch( 'Precision' )
172  anorm = slange( 'M', m, n, a, lda, work )
173 *
174 * Compute U' * A * V.
175 *
176  CALL sgemm( 'N', 'T', m, ns, n, one, a, lda, vt,
177  $ ldvt, zero, work( 1+ns*ns ), m )
178  CALL sgemm( 'T', 'N', ns, ns, m, -one, u, ldu, work( 1+ns*ns ),
179  $ m, zero, work, ns )
180 *
181 * norm(S - U' * B * V)
182 *
183  j = 0
184  DO 10 i = 1, ns
185  work( j+i ) = work( j+i ) + s( i )
186  resid = max( resid, sasum( ns, work( j+1 ), 1 ) )
187  j = j + ns
188  10 CONTINUE
189 *
190  IF( anorm.LE.zero ) THEN
191  IF( resid.NE.zero )
192  $ resid = one / eps
193  ELSE
194  IF( anorm.GE.resid ) THEN
195  resid = ( resid / anorm ) / ( REAL( n )*eps )
196  ELSE
197  IF( anorm.LT.one ) THEN
198  resid = ( min( resid, REAL( n )*anorm ) / anorm ) /
199  $ ( REAL( n )*eps )
200  ELSE
201  resid = min( resid / anorm, REAL( N ) ) /
202  $ ( REAL( n )*eps )
203  END IF
204  END IF
205  END IF
206 *
207  RETURN
208 *
209 * End of SBDT05
210 *
subroutine sgemm(TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC)
SGEMM
Definition: sgemm.f:189
integer function isamax(N, SX, INCX)
ISAMAX
Definition: isamax.f:53
real function slange(NORM, M, N, A, LDA, WORK)
SLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value ...
Definition: slange.f:116
real function sasum(N, SX, INCX)
SASUM
Definition: sasum.f:54
logical function lsame(CA, CB)
LSAME
Definition: lsame.f:55
real function slamch(CMACH)
SLAMCH
Definition: slamch.f:69

Here is the call graph for this function:

Here is the caller graph for this function: