LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
scasumsub.f
Go to the documentation of this file.
1c scasumsub.f
2c
3c The program is a fortran wrapper for scasum.
4c Witten by Keita Teranishi. 2/11/1998
5c
6 subroutine scasumsub(n,x,incx,asum)
7c
8 external scasum
9 real scasum,asum
10 integer n,incx
11 complex x(*)
12c
13 asum=scasum(n,x,incx)
14 return
15 end
real function scasum(n, cx, incx)
SCASUM
Definition scasum.f:72
subroutine scasumsub(n, x, incx, asum)
Definition scasumsub.f:7