Diff for /rpl/lapack/lapack/dlatsqr.f between versions 1.3 and 1.4

version 1.3, 2018/05/29 07:18:01 version 1.4, 2020/05/21 21:46:01
Line 1 Line 1
   *> \brief \b DLATSQR
 *  *
 *  Definition:  *  Definition:
 *  ===========  *  ===========
Line 19 Line 20
 *> \verbatim  *> \verbatim
 *>  *>
 *> DLATSQR computes a blocked Tall-Skinny QR factorization of  *> DLATSQR computes a blocked Tall-Skinny QR factorization of
 *> an M-by-N matrix A, where M >= N:  *> a real M-by-N matrix A for M >= N:
 *> A = Q * R .  *>
   *>    A = Q * ( R ),
   *>            ( 0 )
   *>
   *> where:
   *>
   *>    Q is a M-by-M orthogonal matrix, stored on exit in an implicit
   *>    form in the elements below the digonal of the array A and in
   *>    the elemenst of the array T;
   *>
   *>    R is an upper-triangular N-by-N matrix, stored on exit in
   *>    the elements on and above the diagonal of the array A.
   *>
   *>    0 is a (M-N)-by-N zero matrix, and is not stored.
   *>
 *> \endverbatim  *> \endverbatim
 *  *
 *  Arguments:  *  Arguments:
Line 149 Line 164
       SUBROUTINE DLATSQR( M, N, MB, NB, A, LDA, T, LDT, WORK,        SUBROUTINE DLATSQR( M, N, MB, NB, A, LDA, T, LDT, WORK,
      $                    LWORK, INFO)       $                    LWORK, 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, MB, NB, LDT, LWORK        INTEGER           INFO, LDA, M, N, MB, NB, LDT, LWORK

Removed from v.1.3  
changed lines
  Added in v.1.4


CVSweb interface <joel.bertrand@systella.fr>