table of contents
SDOT(1) | BLAS routine | SDOT(1) |
NAME¶
SDOT - SDOT form the dot product of two vectors
SYNOPSIS¶
- REAL FUNCTION
- SDOT(N,SX,INCX,SY,INCY)
INTEGER INCX,INCY,N REAL SX(*),SY(*)
PURPOSE¶
SDOT forms the dot product of two vectors.
uses unrolled loops for increments equal to one.
FURTHER DETAILS¶
jack dongarra, linpack, 3/11/78.
modified 12/3/93, array(1) declarations changed to array(*)
November 2008 | BLAS routine |