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