LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ scabs1()

real function scabs1 ( complex  Z)

SCABS1

Purpose:
 SCABS1 computes |Re(.)| + |Im(.)| of a complex number
Parameters
[in]Z
          Z is COMPLEX
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2017

Definition at line 48 of file scabs1.f.

48 *
49 * -- Reference BLAS level1 routine (version 3.8.0) --
50 * -- Reference BLAS is a software package provided by Univ. of Tennessee, --
51 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
52 * November 2017
53 *
54 * .. Scalar Arguments ..
55  COMPLEX Z
56 * ..
57 *
58 * =====================================================================
59 *
60 * .. Intrinsic Functions ..
61  INTRINSIC abs,aimag,real
62 * ..
63  scabs1 = abs(real(z)) + abs(aimag(z))
64  RETURN
Here is the caller graph for this function:
scabs1
real function scabs1(Z)
SCABS1
Definition: scabs1.f:48