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