Diff for /rpl/lapack/blas/dscal.f between versions 1.7 and 1.14

version 1.7, 2011/07/22 07:38:01 version 1.14, 2018/05/29 06:55:14
Line 1 Line 1
   *> \brief \b DSCAL
   *
   *  =========== DOCUMENTATION ===========
   *
   * Online html documentation available at
   *            http://www.netlib.org/lapack/explore-html/
   *
   *  Definition:
   *  ===========
   *
   *       SUBROUTINE DSCAL(N,DA,DX,INCX)
   *
   *       .. Scalar Arguments ..
   *       DOUBLE PRECISION DA
   *       INTEGER INCX,N
   *       ..
   *       .. Array Arguments ..
   *       DOUBLE PRECISION DX(*)
   *       ..
   *
   *
   *> \par Purpose:
   *  =============
   *>
   *> \verbatim
   *>
   *>    DSCAL scales a vector by a constant.
   *>    uses unrolled loops for increment equal to 1.
   *> \endverbatim
   *
   *  Arguments:
   *  ==========
   *
   *> \param[in] N
   *> \verbatim
   *>          N is INTEGER
   *>         number of elements in input vector(s)
   *> \endverbatim
   *>
   *> \param[in] DA
   *> \verbatim
   *>          DA is DOUBLE PRECISION
   *>           On entry, DA specifies the scalar alpha.
   *> \endverbatim
   *>
   *> \param[in,out] DX
   *> \verbatim
   *>          DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) )
   *> \endverbatim
   *>
   *> \param[in] INCX
   *> \verbatim
   *>          INCX is INTEGER
   *>         storage spacing between elements of DX
   *> \endverbatim
   *
   *  Authors:
   *  ========
   *
   *> \author Univ. of Tennessee
   *> \author Univ. of California Berkeley
   *> \author Univ. of Colorado Denver
   *> \author NAG Ltd.
   *
   *> \date November 2017
   *
   *> \ingroup double_blas_level1
   *
   *> \par Further Details:
   *  =====================
   *>
   *> \verbatim
   *>
   *>     jack dongarra, linpack, 3/11/78.
   *>     modified 3/93 to return if incx .le. 0.
   *>     modified 12/3/93, array(1) declarations changed to array(*)
   *> \endverbatim
   *>
   *  =====================================================================
       SUBROUTINE DSCAL(N,DA,DX,INCX)        SUBROUTINE DSCAL(N,DA,DX,INCX)
   *
   *  -- Reference BLAS level1 routine (version 3.8.0) --
   *  -- Reference BLAS is a software package provided by Univ. of Tennessee,    --
   *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
   *     November 2017
   *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       DOUBLE PRECISION DA        DOUBLE PRECISION DA
       INTEGER INCX,N        INTEGER INCX,N
Line 7 Line 92
       DOUBLE PRECISION DX(*)        DOUBLE PRECISION DX(*)
 *     ..  *     ..
 *  *
 *  Purpose  
 *  =======  
 *  
 *     DSCAL scales a vector by a constant.  
 *     uses unrolled loops for increment equal to one.  
 *  
 *  Further Details  
 *  ===============  
 *  
 *     jack dongarra, linpack, 3/11/78.  
 *     modified 3/93 to return if incx .le. 0.  
 *     modified 12/3/93, array(1) declarations changed to array(*)  
 *  
 *  =====================================================================  *  =====================================================================
 *  *
 *     .. Local Scalars ..  *     .. Local Scalars ..

Removed from v.1.7  
changed lines
  Added in v.1.14


CVSweb interface <joel.bertrand@systella.fr>