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 / zscal.f < prev    next >
Text File  |  1996-09-28  |  610b  |  30 lines

  1.       subroutine  zscal(n,za,zx,incx)
  2. c
  3. c     scales a vector by a constant.
  4. c     jack dongarra, 3/11/78.
  5. c     modified to correct problem with negative increment, 8/21/90.
  6. c
  7.       double complex za,zx(1)
  8.       integer i,incx,ix,n
  9. c
  10.       if(n.le.0)return
  11.       if(incx.eq.1)go to 20
  12. c
  13. c        code for increment not equal to 1
  14. c
  15.       ix = 1
  16.       if(incx.lt.0)ix = (-n+1)*incx + 1
  17.       do 10 i = 1,n
  18.         zx(ix) = za*zx(ix)
  19.         ix = ix + incx
  20.    10 continue
  21.       return
  22. c
  23. c        code for increment equal to 1
  24. c
  25.    20 do 30 i = 1,n
  26.         zx(i) = za*zx(i)
  27.    30 continue
  28.       return
  29.       end
  30.