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

version 1.16, 2018/05/29 07:18:00 version 1.17, 2023/08/07 08:38:58
Line 1 Line 1
 *> \brief \b DLASCL2 performs diagonal scaling on a vector.  *> \brief \b DLASCL2 performs diagonal scaling on a matrix.
 *  *
 *  =========== DOCUMENTATION ===========  *  =========== DOCUMENTATION ===========
 *  *
Line 33 Line 33
 *>  *>
 *> \verbatim  *> \verbatim
 *>  *>
 *> DLASCL2 performs a diagonal scaling on a vector:  *> DLASCL2 performs a diagonal scaling on a matrix:
 *>   x <-- D * x  *>   x <-- D * x
 *> where the diagonal matrix D is stored as a vector.  *> where the diagonal matrix D is stored as a vector.
 *>  *>
Line 65 Line 65
 *> \param[in,out] X  *> \param[in,out] X
 *> \verbatim  *> \verbatim
 *>          X is DOUBLE PRECISION array, dimension (LDX,N)  *>          X is DOUBLE PRECISION array, dimension (LDX,N)
 *>     On entry, the vector X to be scaled by D.  *>     On entry, the matrix X to be scaled by D.
 *>     On exit, the scaled vector.  *>     On exit, the scaled matrix.
 *> \endverbatim  *> \endverbatim
 *>  *>
 *> \param[in] LDX  *> \param[in] LDX
 *> \verbatim  *> \verbatim
 *>          LDX is INTEGER  *>          LDX is INTEGER
 *>     The leading dimension of the vector X. LDX >= M.  *>     The leading dimension of the matrix X. LDX >= M.
 *> \endverbatim  *> \endverbatim
 *  *
 *  Authors:  *  Authors:
Line 83 Line 83
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date June 2016  
 *  
 *> \ingroup doubleOTHERcomputational  *> \ingroup doubleOTHERcomputational
 *  *
 *  =====================================================================  *  =====================================================================
       SUBROUTINE DLASCL2 ( M, N, D, X, LDX )        SUBROUTINE DLASCL2 ( M, N, D, X, LDX )
 *  *
 *  -- 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..--
 *     June 2016  
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       INTEGER            M, N, LDX        INTEGER            M, N, LDX

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


CVSweb interface <joel.bertrand@systella.fr>