1SDOT(1) BLAS routine SDOT(1)
23
4
NAME
6SDOT - the dot product of two vectors
7
SYNOPSIS
9REAL FUNCTION SDOT(N,SX,INCX,SY,INCY)
1011
INTEGER INCX,INCY,N
1213
REAL SX(*),SY(*)
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
26
BLAS routine November 2006 SDOT(1)