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

Definition at line 7 of file ddotsub.f.

7 c
8  external ddot
9  double precision ddot
10  integer n,incx,incy
11  double precision x(*),y(*),dot
12 c
13  dot=ddot(n,x,incx,y,incy)
14  return
double precision function ddot(N, DX, INCX, DY, INCY)
DDOT
Definition: ddot.f:53

Here is the call graph for this function: