LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine sdotsub ( integer  n,
real, dimension(*)  x,
integer  incx,
real, dimension(*)  y,
integer  incy,
real  dot 
)

Definition at line 7 of file sdotsub.f.

7 c
8  external sdot
9  real sdot
10  integer n,incx,incy
11  real x(*),y(*),dot
12 c
13  dot=sdot(n,x,incx,y,incy)
14  return
real function sdot(N, SX, INCX, SY, INCY)
SDOT
Definition: sdot.f:53

Here is the call graph for this function: