home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / libcruft / blas / zdotc.f < prev    next >
Text File  |  1996-09-28  |  848b  |  36 lines

  1.       double complex function zdotc(n,zx,incx,zy,incy)
  2. c
  3. c     forms the dot product of a vector.
  4. c     jack dongarra, 3/11/78.
  5. c
  6.       double complex zx(1),zy(1),ztemp
  7.       integer i,incx,incy,ix,iy,n
  8.       ztemp = (0.0d0,0.0d0)
  9.       zdotc = (0.0d0,0.0d0)
  10.       if(n.le.0)return
  11.       if(incx.eq.1.and.incy.eq.1)go to 20
  12. c
  13. c        code for unequal increments or equal increments
  14. c          not equal to 1
  15. c
  16.       ix = 1
  17.       iy = 1
  18.       if(incx.lt.0)ix = (-n+1)*incx + 1
  19.       if(incy.lt.0)iy = (-n+1)*incy + 1
  20.       do 10 i = 1,n
  21.         ztemp = ztemp + dconjg(zx(ix))*zy(iy)
  22.         ix = ix + incx
  23.         iy = iy + incy
  24.    10 continue
  25.       zdotc = ztemp
  26.       return
  27. c
  28. c        code for both increments equal to 1
  29. c
  30.    20 do 30 i = 1,n
  31.         ztemp = ztemp + dconjg(zx(i))*zy(i)
  32.    30 continue
  33.       zdotc = ztemp
  34.       return
  35.       end
  36.