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 / zswap.f < prev    next >
Text File  |  1996-09-28  |  775b  |  36 lines

  1.       subroutine  zswap (n,zx,incx,zy,incy)
  2. c
  3. c     interchanges two vectors.
  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. 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 not equal
  13. c         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.         ztemp = zx(ix)
  21.         zx(ix) = zy(iy)
  22.         zy(iy) = ztemp
  23.         ix = ix + incx
  24.         iy = iy + incy
  25.    10 continue
  26.       return
  27. c
  28. c       code for both increments equal to 1
  29.    20 do 30 i = 1,n
  30.         ztemp = zx(i)
  31.         zx(i) = zy(i)
  32.         zy(i) = ztemp
  33.    30 continue
  34.       return
  35.       end
  36.