LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
complex function cdotu ( integer  N,
complex, dimension(*)  CX,
integer  INCX,
complex, dimension(*)  CY,
integer  INCY 
)

CDOTU

Purpose:
 CDOTU forms the dot product of two complex vectors
      CDOTU = X^T * Y
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2015
Further Details:
     jack dongarra, linpack, 3/11/78.
     modified 12/3/93, array(1) declarations changed to array(*)

Definition at line 54 of file cdotu.f.

54 *
55 * -- Reference BLAS level1 routine (version 3.6.0) --
56 * -- Reference BLAS is a software package provided by Univ. of Tennessee, --
57 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
58 * November 2015
59 *
60 * .. Scalar Arguments ..
61  INTEGER incx,incy,n
62 * ..
63 * .. Array Arguments ..
64  COMPLEX cx(*),cy(*)
65 * ..
66 *
67 * =====================================================================
68 *
69 * .. Local Scalars ..
70  COMPLEX ctemp
71  INTEGER i,ix,iy
72 * ..
73  ctemp = (0.0,0.0)
74  cdotu = (0.0,0.0)
75  IF (n.LE.0) RETURN
76  IF (incx.EQ.1 .AND. incy.EQ.1) THEN
77 *
78 * code for both increments equal to 1
79 *
80  DO i = 1,n
81  ctemp = ctemp + cx(i)*cy(i)
82  END DO
83  ELSE
84 *
85 * code for unequal increments or equal increments
86 * not equal to 1
87 *
88  ix = 1
89  iy = 1
90  IF (incx.LT.0) ix = (-n+1)*incx + 1
91  IF (incy.LT.0) iy = (-n+1)*incy + 1
92  DO i = 1,n
93  ctemp = ctemp + cx(ix)*cy(iy)
94  ix = ix + incx
95  iy = iy + incy
96  END DO
97  END IF
98  cdotu = ctemp
99  RETURN
complex function cdotu(N, CX, INCX, CY, INCY)
CDOTU
Definition: cdotu.f:54

Here is the caller graph for this function: