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 / zcopy.f < prev    next >
Text File  |  1996-09-28  |  702b  |  33 lines

  1.       subroutine  zcopy(n,zx,incx,zy,incy)
  2. c
  3. c     copies a vector, x, to a vector, y.
  4. c     jack dongarra, linpack, 4/11/78.
  5. c
  6.       double complex zx(1),zy(1)
  7.       integer i,incx,incy,ix,iy,n
  8. c
  9.       if(n.le.0)return
  10.       if(incx.eq.1.and.incy.eq.1)go to 20
  11. c
  12. c        code for unequal increments or equal increments
  13. c          not equal to 1
  14. c
  15.       ix = 1
  16.       iy = 1
  17.       if(incx.lt.0)ix = (-n+1)*incx + 1
  18.       if(incy.lt.0)iy = (-n+1)*incy + 1
  19.       do 10 i = 1,n
  20.         zy(iy) = zx(ix)
  21.         ix = ix + incx
  22.         iy = iy + incy
  23.    10 continue
  24.       return
  25. c
  26. c        code for both increments equal to 1
  27. c
  28.    20 do 30 i = 1,n
  29.         zy(i) = zx(i)
  30.    30 continue
  31.       return
  32.       end
  33.