1CCOPY(1) BLAS routine CCOPY(1)
23
4
NAME
6CCOPY - CCOPY copie a vector x to a vector y
7
SYNOPSIS
9SUBROUTINE CCOPY(N,CX,INCX,CY,INCY)
1011
INTEGER INCX,INCY,N
1213
COMPLEX CX(*),CY(*)
14
PURPOSE
16CCOPY copies a vector x to a vector y.
1718
FURTHER DETAILS
20jack dongarra, linpack, 3/11/78.
21modified 12/3/93, array(1) declarations changed to array(*)
2223
24
25
26
BLAS routine November 2008 CCOPY(1)