LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void F77_dcopy ( const int *  N,
double *  X,
const int *  incX,
double *  Y,
const int *  incY 
)

Definition at line 23 of file c_dblas1.c.

25 {
26  cblas_dcopy(*N, X, *incX, Y, *incY);
27  return;
28 }
void cblas_dcopy(const int N, const double *X, const int incX, double *Y, const int incY)
Definition: cblas_dcopy.c:11
#define N
Definition: example_user.c:10

Here is the call graph for this function: