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

Definition at line 7 of file dsdotsub.f.

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

Here is the call graph for this function: