1DDOT(1) BLAS routine DDOT(1)
23
4
NAME
6DDOT - the dot product of two vectors
7
SYNOPSIS
9DOUBLE PRECISION FUNCTION DDOT(N,DX,INCX,DY,INCY)
1011
INTEGER INCX,INCY,N
1213
DOUBLE PRECISION DX(*),DY(*)
14
PURPOSE
16forms the dot product of two vectors.
17uses unrolled loops for increments equal to one.
18jack dongarra, linpack, 3/11/78.
19modified 12/3/93, array(1) declarations changed to array(*)
2021
22
23
24
25
BLAS routine November 2006 DDOT(1)