REAL FUNCTION SDSDOT(N,SX,INCX,SY,INCY) computes the inner (dot) product of two vectors. SDSDOT = SUM(I=1 to N) of SX(I)*SY(I). Double precision arithmetic is used to compute the dot product with greater accuracy, although the final result is returned as single precision. N Input, INTEGER N, number of elements in the vectors. SX Input, REAL SX(N), vector operand. INCX Input, INTEGER INCX, increment between elements of SX. For contiguous elements, INCX = 1. SY Input, REAL SY(N), vector operand. INCY Input, INTEGER INCY, increment between elements of SY. For contiguous elements, INCY = 1. SDSDOT Output, REAL SDSDOT, the dot product of SX and SY.