1SASUM(1) BLAS routine SASUM(1)
23
4
NAME
6SASUM - the sum of the absolute values
7
SYNOPSIS
9REAL FUNCTION SASUM(N,SX,INCX)
1011
INTEGER INCX,N
1213
REAL SX(*)
14
PURPOSE
16takes the sum of the absolute values.
17uses unrolled loops for increment equal to one.
18jack dongarra, linpack, 3/11/78.
19modified 3/93 to return if incx .le. 0.
20modified 12/3/93, array(1) declarations changed to array(*)
2122
23
24
25
26
27
BLAS routine November 2006 SASUM(1)