scabs1 Function

function scabs1(z)

Uses

\brief \b SCABS1 \par Purpose:

\verbatim

SCABS1 computes |Re(.)| + |Im(.)| of a complex number \endverbatim \param[in] Z \verbatim Z is COMPLEX \endverbatim \author Univ. of Tennessee \author Univ. of California Berkeley \author Univ. of Colorado Denver \author NAG Ltd. \date November 2017 \ingroup single_blas_level1

Arguments

Type IntentOptional Attributes Name
complex, intent(in) :: z

Return Value real


Contents

Source Code


Source Code

 real function scabs1(z)
! COMMENT --file scabs1.3m_blas.man
!> \brief \b SCABS1
!
!  =========== DOCUMENTATION ===========
!
! Online html documentation available at
!            http://www.netlib.org/lapack/explore-html/
!
!  Definition:
!  ===========
!
!       REAL FUNCTION SCABS1(Z)
!
!       .. Scalar Arguments ..
!       COMPLEX Z
!       ..
!
!
!> \par Purpose:
!  =============
!>
!> \verbatim
!>
!> SCABS1 computes |Re(.)| + |Im(.)| of a complex number
!> \endverbatim
!
!  Arguments:
!  ==========
!
!> \param[in] Z
!> \verbatim
!>          Z is COMPLEX
!> \endverbatim
!
!  Authors:
!  ========
!
!> \author Univ. of Tennessee
!> \author Univ. of California Berkeley
!> \author Univ. of Colorado Denver
!> \author NAG Ltd.
!
!> \date November 2017
!
!> \ingroup single_blas_level1
!
!  =====================================================================
!
!  -- 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 ..
!     ..
!
!  =====================================================================
!
!     .. Intrinsic Functions ..
!     ..
! END
use M_blas, only : scabs1_=>SCAbs1
implicit none
complex,intent(in) :: z
   scabs1 = scabs1_(z)
end function scabs1