1DSWAP(1) BLAS routine DSWAP(1)
23
4
NAME
6DSWAP - two vectors
7
SYNOPSIS
9SUBROUTINE DSWAP(N,DX,INCX,DY,INCY)
1011
INTEGER INCX,INCY,N
1213
DOUBLE PRECISION DX(*),DY(*)
14
PURPOSE
16interchanges two vectors.
17uses unrolled loops for increments equal one.
18jack dongarra, linpack, 3/11/78.
19modified 12/3/93, array(1) declarations changed to array(*)
2021
22
23
24
25
BLAS routine November 2006 DSWAP(1)