1SCASUM(1) BLAS routine SCASUM(1)
2
3
4
6 SCASUM - the sum of the absolute values of a complex vector and
7 returns a single precision result
8
10 REAL FUNCTION SCASUM(N,CX,INCX)
11
12 INTEGER INCX,N
13
14 COMPLEX CX(*)
15
17 takes the sum of the absolute values of a complex vector and
18 returns a single precision result.
19 jack dongarra, linpack, 3/11/78.
20 modified 3/93 to return if incx .le. 0.
21 modified 12/3/93, array(1) declarations changed to array(*)
22
23
24
25
26
27BLAS routine November 2006 SCASUM(1)