1CSWAP(1) BLAS routine CSWAP(1)
23
4
NAME
6CSWAP - two vectors
7
SYNOPSIS
9SUBROUTINE CSWAP(N,CX,INCX,CY,INCY)
1011
INTEGER INCX,INCY,N
1213
COMPLEX CX(*),CY(*)
14
PURPOSE
16interchanges two vectors.
17jack dongarra, linpack, 3/11/78.
18modified 12/3/93, array(1) declarations changed to array(*)
1920
21
22
23
24
BLAS routine November 2006 CSWAP(1)