1DDOT(1) BLAS routine DDOT(1)
23
4
NAME
6DDOT - DDOT form 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
16DDOT forms the dot product of two vectors.
17uses unrolled loops for increments equal to one.
1819
FURTHER DETAILS
21jack dongarra, linpack, 3/11/78.
22modified 12/3/93, array(1) declarations changed to array(*)
2324
25
26
27
BLAS routine November 2008 DDOT(1)