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