1DCOPY(1) BLAS routine DCOPY(1)
23
4
NAME
6DCOPY - DCOPY copie 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
16DCOPY copies a vector, x, to a vector, y.
17uses unrolled loops for increments equal to one.
1819
FURTHER DETAILS
21jack dongarra, linpack, 3/11/78.
22modified 12/3/93, array(1) declarations changed to array(*)
2324
25
26
27
BLAS routine November 2008 DCOPY(1)