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

ZSWAP

Purpose:
    ZSWAP interchanges two vectors.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011
Further Details:
     jack dongarra, 3/11/78.
     modified 12/3/93, array(1) declarations changed to array(*)

Definition at line 52 of file zswap.f.

52 *
53 * -- Reference BLAS level1 routine (version 3.4.0) --
54 * -- Reference BLAS is a software package provided by Univ. of Tennessee, --
55 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
56 * November 2011
57 *
58 * .. Scalar Arguments ..
59  INTEGER incx,incy,n
60 * ..
61 * .. Array Arguments ..
62  COMPLEX*16 zx(*),zy(*)
63 * ..
64 *
65 * =====================================================================
66 *
67 * .. Local Scalars ..
68  COMPLEX*16 ztemp
69  INTEGER i,ix,iy
70 * ..
71  IF (n.LE.0) RETURN
72  IF (incx.EQ.1 .AND. incy.EQ.1) THEN
73 *
74 * code for both increments equal to 1
75  DO i = 1,n
76  ztemp = zx(i)
77  zx(i) = zy(i)
78  zy(i) = ztemp
79  END DO
80  ELSE
81 *
82 * code for unequal increments or equal increments not equal
83 * to 1
84 *
85  ix = 1
86  iy = 1
87  IF (incx.LT.0) ix = (-n+1)*incx + 1
88  IF (incy.LT.0) iy = (-n+1)*incy + 1
89  DO i = 1,n
90  ztemp = zx(ix)
91  zx(ix) = zy(iy)
92  zy(iy) = ztemp
93  ix = ix + incx
94  iy = iy + incy
95  END DO
96  END IF
97  RETURN