Diff for /rpl/lapack/lapack/dgeqr2p.f between versions 1.16 and 1.17

version 1.16, 2018/05/29 07:17:52 version 1.17, 2020/05/21 21:45:56
Line 33 Line 33
 *>  *>
 *> \verbatim  *> \verbatim
 *>  *>
 *> DGEQR2P computes a QR factorization of a real m by n matrix A:  *> DGEQR2P computes a QR factorization of a real m-by-n matrix A:
 *> A = Q * R. The diagonal entries of R are nonnegative.  *>
   *>    A = Q * ( R ),
   *>            ( 0 )
   *>
   *> where:
   *>
   *>    Q is a m-by-m orthogonal matrix;
   *>    R is an upper-triangular n-by-n matrix with nonnegative diagonal
   *>    entries;
   *>    0 is a (m-n)-by-n zero matrix, if m > n.
   *>
 *> \endverbatim  *> \endverbatim
 *  *
 *  Arguments:  *  Arguments:
Line 97 Line 107
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date December 2016  *> \date November 2019
 *  *
 *> \ingroup doubleGEcomputational  *> \ingroup doubleGEcomputational
 *  *
Line 124 Line 134
 *  =====================================================================  *  =====================================================================
       SUBROUTINE DGEQR2P( M, N, A, LDA, TAU, WORK, INFO )        SUBROUTINE DGEQR2P( M, N, A, LDA, TAU, WORK, INFO )
 *  *
 *  -- LAPACK computational routine (version 3.7.0) --  *  -- LAPACK computational routine (version 3.9.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --  *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--  *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     December 2016  *     November 2019
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       INTEGER            INFO, LDA, M, N        INTEGER            INFO, LDA, M, N

Removed from v.1.16  
changed lines
  Added in v.1.17


CVSweb interface <joel.bertrand@systella.fr>