1ZCOPY(1) BLAS routine ZCOPY(1)
23
4
NAME
6ZCOPY - a vector, x, to a vector, y
7
SYNOPSIS
9SUBROUTINE ZCOPY(N,ZX,INCX,ZY,INCY)
1011
INTEGER INCX,INCY,N
1213
DOUBLE COMPLEX ZX(*),ZY(*)
14
PURPOSE
16copies a vector, x, to a vector, y.
17jack dongarra, linpack, 4/11/78.
18modified 12/3/93, array(1) declarations changed to array(*)
1920
21
22
23
24
BLAS routine November 2006 ZCOPY(1)