summaryrefslogtreecommitdiff
path: root/BLAS/SRC/scabs1.f
blob: eccb9f61f0ceffe2657ec7a38f66fd932ba2a75c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
      REAL FUNCTION SCABS1(Z)
*     .. Scalar Arguments ..
      COMPLEX Z
*     ..
*
*  Purpose
*  =======
*
*  SCABS1 computes absolute value of a complex number
*
*  =====================================================================
*
*     .. Intrinsic Functions ..
      INTRINSIC ABS,AIMAG,REAL
*     ..
      SCABS1 = ABS(REAL(Z)) + ABS(AIMAG(Z))
      RETURN
      END