Diff for /rpl/lapack/lapack/zlacgv.f between versions 1.7 and 1.8

version 1.7, 2010/12/21 13:53:49 version 1.8, 2011/11/21 20:43:14
Line 1 Line 1
   *> \brief \b ZLACGV
   *
   *  =========== DOCUMENTATION ===========
   *
   * Online html documentation available at 
   *            http://www.netlib.org/lapack/explore-html/ 
   *
   *> \htmlonly
   *> Download ZLACGV + dependencies 
   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zlacgv.f"> 
   *> [TGZ]</a> 
   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zlacgv.f"> 
   *> [ZIP]</a> 
   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zlacgv.f"> 
   *> [TXT]</a>
   *> \endhtmlonly 
   *
   *  Definition:
   *  ===========
   *
   *       SUBROUTINE ZLACGV( N, X, INCX )
   * 
   *       .. Scalar Arguments ..
   *       INTEGER            INCX, N
   *       ..
   *       .. Array Arguments ..
   *       COMPLEX*16         X( * )
   *       ..
   *  
   *
   *> \par Purpose:
   *  =============
   *>
   *> \verbatim
   *>
   *> ZLACGV conjugates a complex vector of length N.
   *> \endverbatim
   *
   *  Arguments:
   *  ==========
   *
   *> \param[in] N
   *> \verbatim
   *>          N is INTEGER
   *>          The length of the vector X.  N >= 0.
   *> \endverbatim
   *>
   *> \param[in,out] X
   *> \verbatim
   *>          X is COMPLEX*16 array, dimension
   *>                         (1+(N-1)*abs(INCX))
   *>          On entry, the vector of length N to be conjugated.
   *>          On exit, X is overwritten with conjg(X).
   *> \endverbatim
   *>
   *> \param[in] INCX
   *> \verbatim
   *>          INCX is INTEGER
   *>          The spacing between successive elements of X.
   *> \endverbatim
   *
   *  Authors:
   *  ========
   *
   *> \author Univ. of Tennessee 
   *> \author Univ. of California Berkeley 
   *> \author Univ. of Colorado Denver 
   *> \author NAG Ltd. 
   *
   *> \date November 2011
   *
   *> \ingroup complex16OTHERauxiliary
   *
   *  =====================================================================
       SUBROUTINE ZLACGV( N, X, INCX )        SUBROUTINE ZLACGV( N, X, INCX )
 *  *
 *  -- LAPACK auxiliary routine (version 3.2) --  *  -- LAPACK auxiliary routine (version 3.4.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..--
 *     November 2006  *     November 2011
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       INTEGER            INCX, N        INTEGER            INCX, N
Line 12 Line 86
       COMPLEX*16         X( * )        COMPLEX*16         X( * )
 *     ..  *     ..
 *  *
 *  Purpose  
 *  =======  
 *  
 *  ZLACGV conjugates a complex vector of length N.  
 *  
 *  Arguments  
 *  =========  
 *  
 *  N       (input) INTEGER  
 *          The length of the vector X.  N >= 0.  
 *  
 *  X       (input/output) COMPLEX*16 array, dimension  
 *                         (1+(N-1)*abs(INCX))  
 *          On entry, the vector of length N to be conjugated.  
 *          On exit, X is overwritten with conjg(X).  
 *  
 *  INCX    (input) INTEGER  
 *          The spacing between successive elements of X.  
 *  
 * =====================================================================  * =====================================================================
 *  *
 *     .. Local Scalars ..  *     .. Local Scalars ..

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


CVSweb interface <joel.bertrand@systella.fr>