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