scabs1(3f) - [BLAS:SINGLE_BLAS_LEVEL1]
elemental real function scabs1(z)
.. Scalar Arguments ..
complex,intent(in) :: z
..
SCABS1 computes |Re(.)| + |Im(.)| of a complex number
Z
Z is COMPLEX
date:November 2017
Online html documentation available at
http://www.netlib.org/lapack/explore-html/
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
complex, | intent(in) | :: | z |
pure elemental real function scabs1(z)
implicit none
!
! -- 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 ..
complex,intent(in) :: z
! ..
! =====================================================================
! .. Intrinsic Functions ..
intrinsic abs,aimag,real
! ..
scabs1 = abs(real(z)) + abs(aimag(z))
end function scabs1