--- rpl/lapack/lapack/dgeqrt3.f 2012/08/22 09:48:13 1.2 +++ rpl/lapack/lapack/dgeqrt3.f 2016/08/27 15:27:08 1.6 @@ -1,4 +1,4 @@ -*> \brief \b DGEQRT3 +*> \brief \b DGEQRT3 recursively computes a QR factorization of a general real or complex matrix using the compact WY representation of Q. * * =========== DOCUMENTATION =========== * @@ -100,7 +100,7 @@ *> \author Univ. of Colorado Denver *> \author NAG Ltd. * -*> \date November 2011 +*> \date June 2016 * *> \ingroup doubleGEcomputational * @@ -132,10 +132,10 @@ * ===================================================================== RECURSIVE SUBROUTINE DGEQRT3( M, N, A, LDA, T, LDT, INFO ) * -* -- LAPACK computational routine (version 3.4.0) -- +* -- LAPACK computational routine (version 3.6.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- -* November 2011 +* June 2016 * * .. Scalar Arguments .. INTEGER INFO, LDA, M, N, LDT @@ -177,7 +177,7 @@ * * Compute Householder transform when N=1 * - CALL DLARFG( M, A, A( MIN( 2, M ), 1 ), 1, T ) + CALL DLARFG( M, A(1,1), A( MIN( 2, M ), 1 ), 1, T(1,1) ) * ELSE *