LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
complex*16 function zdotc ( integer  N,
complex*16, dimension(*)  ZX,
integer  INCX,
complex*16, dimension(*)  ZY,
integer  INCY 
)

ZDOTC

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

Definition at line 54 of file zdotc.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*16 zx(*),zy(*)
65 * ..
66 *
67 * =====================================================================
68 *
69 * .. Local Scalars ..
70  COMPLEX*16 ztemp
71  INTEGER i,ix,iy
72 * ..
73 * .. Intrinsic Functions ..
74  INTRINSIC dconjg
75 * ..
76  ztemp = (0.0d0,0.0d0)
77  zdotc = (0.0d0,0.0d0)
78  IF (n.LE.0) RETURN
79  IF (incx.EQ.1 .AND. incy.EQ.1) THEN
80 *
81 * code for both increments equal to 1
82 *
83  DO i = 1,n
84  ztemp = ztemp + dconjg(zx(i))*zy(i)
85  END DO
86  ELSE
87 *
88 * code for unequal increments or equal increments
89 * not equal to 1
90 *
91  ix = 1
92  iy = 1
93  IF (incx.LT.0) ix = (-n+1)*incx + 1
94  IF (incy.LT.0) iy = (-n+1)*incy + 1
95  DO i = 1,n
96  ztemp = ztemp + dconjg(zx(ix))*zy(iy)
97  ix = ix + incx
98  iy = iy + incy
99  END DO
100  END IF
101  zdotc = ztemp
102  RETURN
complex *16 function zdotc(N, ZX, INCX, ZY, INCY)
ZDOTC
Definition: zdotc.f:54

Here is the caller graph for this function: