REAL FUNCTION SDOT(N,SX,INCX,SY,INCY) computes the inner (dot) product of two vectors. SDOT = SUM(I=1 to N) of SX(I)*SY(I). 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. SDOT Output, REAL SDOT, the dot product of SX and SY.