Diff for /rpl/lapack/blas/dcabs1.f between versions 1.2 and 1.16

version 1.2, 2010/04/21 13:45:09 version 1.16, 2023/08/07 08:38:42
Line 1 Line 1
   *> \brief \b DCABS1
   *
   *  =========== DOCUMENTATION ===========
   *
   * Online html documentation available at
   *            http://www.netlib.org/lapack/explore-html/
   *
   *  Definition:
   *  ===========
   *
   *       DOUBLE PRECISION FUNCTION DCABS1(Z)
   *
   *       .. Scalar Arguments ..
   *       COMPLEX*16 Z
   *       ..
   *       ..
   *
   *
   *> \par Purpose:
   *  =============
   *>
   *> \verbatim
   *>
   *> DCABS1 computes |Re(.)| + |Im(.)| of a double complex number
   *> \endverbatim
   *
   *  Arguments:
   *  ==========
   *
   *> \param[in] Z
   *> \verbatim
   *>          Z is COMPLEX*16
   *> \endverbatim
   *
   *  Authors:
   *  ========
   *
   *> \author Univ. of Tennessee
   *> \author Univ. of California Berkeley
   *> \author Univ. of Colorado Denver
   *> \author NAG Ltd.
   *
   *> \ingroup double_blas_level1
   *
   *  =====================================================================
       DOUBLE PRECISION FUNCTION DCABS1(Z)        DOUBLE PRECISION FUNCTION DCABS1(Z)
   *
   *  -- Reference BLAS level1 routine --
   *  -- Reference BLAS is a software package provided by Univ. of Tennessee,    --
   *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
   *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       DOUBLE COMPLEX Z        COMPLEX*16 Z
 *     ..  *     ..
 *     ..  *     ..
 *  Purpose  
 *  =======  
 *  
 *  DCABS1 computes absolute value of a double complex number   
 *  
 *  =====================================================================  *  =====================================================================
 *  *
 *     .. Intrinsic Functions ..  *     .. Intrinsic Functions ..
Line 15 Line 60
 *  *
       DCABS1 = ABS(DBLE(Z)) + ABS(DIMAG(Z))        DCABS1 = ABS(DBLE(Z)) + ABS(DIMAG(Z))
       RETURN        RETURN
   *
   *     End of DCABS1
   *
       END        END

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


CVSweb interface <joel.bertrand@systella.fr>