Diff for /rpl/lapack/lapack/dgeqrfp.f between versions 1.13 and 1.17

version 1.13, 2017/06/17 10:53:48 version 1.17, 2023/08/07 08:38:49
Line 33 Line 33
 *>  *>
 *> \verbatim  *> \verbatim
 *>  *>
 *> DGEQRFP 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 112 Line 122
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date December 2016  
 *  
 *> \ingroup doubleGEcomputational  *> \ingroup doubleGEcomputational
 *  *
 *> \par Further Details:  *> \par Further Details:
Line 139 Line 147
 *  =====================================================================  *  =====================================================================
       SUBROUTINE DGEQRFP( M, N, A, LDA, TAU, WORK, LWORK, INFO )        SUBROUTINE DGEQRFP( M, N, A, LDA, TAU, WORK, LWORK, INFO )
 *  *
 *  -- LAPACK computational routine (version 3.7.0) --  *  -- LAPACK computational routine --
 *  -- 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  
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       INTEGER            INFO, LDA, LWORK, M, N        INTEGER            INFO, LDA, LWORK, M, N

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


CVSweb interface <joel.bertrand@systella.fr>