1DCOPY(1) BLAS routine DCOPY(1)
23
4
NAME
6DCOPY - a vector, x, to a vector, y
7
SYNOPSIS
9SUBROUTINE DCOPY(N,DX,INCX,DY,INCY)
1011
INTEGER INCX,INCY,N
1213
DOUBLE PRECISION DX(*),DY(*)
14
PURPOSE
16copies a vector, x, to a vector, y.
17uses unrolled loops for increments equal to 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 DCOPY(1)