cdotu.f 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. *DECK CDOTU
  2. COMPLEX FUNCTION CDOTU (N, CX, INCX, CY, INCY)
  3. C***BEGIN PROLOGUE CDOTU
  4. C***PURPOSE Compute the inner product of two vectors.
  5. C***LIBRARY SLATEC (BLAS)
  6. C***CATEGORY D1A4
  7. C***TYPE COMPLEX (SDOT-S, DDOT-D, CDOTU-C)
  8. C***KEYWORDS BLAS, INNER PRODUCT, LINEAR ALGEBRA, VECTOR
  9. C***AUTHOR Lawson, C. L., (JPL)
  10. C Hanson, R. J., (SNLA)
  11. C Kincaid, D. R., (U. of Texas)
  12. C Krogh, F. T., (JPL)
  13. C***DESCRIPTION
  14. C
  15. C B L A S Subprogram
  16. C Description of parameters
  17. C
  18. C --Input--
  19. C N number of elements in input vector(s)
  20. C CX complex vector with N elements
  21. C INCX storage spacing between elements of CX
  22. C CY complex vector with N elements
  23. C INCY storage spacing between elements of CY
  24. C
  25. C --Output--
  26. C CDOTU complex result (zero if N .LE. 0)
  27. C
  28. C Returns the dot product of complex CX and CY, no conjugation
  29. C CDOTU = SUM for I = 0 to N-1 of CX(LX+I*INCX) * CY(LY+I*INCY),
  30. C where LX = 1 if INCX .GE. 0, else LX = 1+(1-N)*INCX, and LY is
  31. C defined in a similar way using INCY.
  32. C
  33. C***REFERENCES C. L. Lawson, R. J. Hanson, D. R. Kincaid and F. T.
  34. C Krogh, Basic linear algebra subprograms for Fortran
  35. C usage, Algorithm No. 539, Transactions on Mathematical
  36. C Software 5, 3 (September 1979), pp. 308-323.
  37. C***ROUTINES CALLED (NONE)
  38. C***REVISION HISTORY (YYMMDD)
  39. C 791001 DATE WRITTEN
  40. C 890831 Modified array declarations. (WRB)
  41. C 890831 REVISION DATE from Version 3.2
  42. C 891214 Prologue converted to Version 4.0 format. (BAB)
  43. C 920310 Corrected definition of LX in DESCRIPTION. (WRB)
  44. C 920501 Reformatted the REFERENCES section. (WRB)
  45. C***END PROLOGUE CDOTU
  46. COMPLEX CX(*),CY(*)
  47. C***FIRST EXECUTABLE STATEMENT CDOTU
  48. CDOTU = (0.0,0.0)
  49. IF (N .LE. 0) RETURN
  50. IF (INCX.EQ.INCY .AND. INCX.GT.0) GO TO 20
  51. C
  52. C Code for unequal or nonpositive increments.
  53. C
  54. KX = 1
  55. KY = 1
  56. IF (INCX .LT. 0) KX = 1+(1-N)*INCX
  57. IF (INCY .LT. 0) KY = 1+(1-N)*INCY
  58. DO 10 I = 1,N
  59. CDOTU = CDOTU + CX(KX)*CY(KY)
  60. KX = KX + INCX
  61. KY = KY + INCY
  62. 10 CONTINUE
  63. RETURN
  64. C
  65. C Code for equal, positive increments.
  66. C
  67. 20 NS = N*INCX
  68. DO 30 I = 1,NS,INCX
  69. CDOTU = CDOTU + CX(I)*CY(I)
  70. 30 CONTINUE
  71. RETURN
  72. END