LAPACK
3.10.1
LAPACK: Linear Algebra PACKage
◆
cblas_dcopy()
void cblas_dcopy
(
const
CBLAS_INT
N
,
const double *
X
,
const
CBLAS_INT
incX
,
double *
Y
,
const
CBLAS_INT
incY
)
Definition at line
11
of file
cblas_dcopy.c
.
13
{
14
#ifdef F77_INT
15
F77_INT
F77_N
=
N
,
F77_incX
=incX,
F77_incY
=incY;
16
#else
17
#define F77_N N
18
#define F77_incX incX
19
#define F77_incY incY
20
#endif
21
F77_dcopy
( &
F77_N
, X, &
F77_incX
, Y, &
F77_incY
);
22
}
F77_dcopy
void F77_dcopy(const int *N, double *X, const int *incX, double *Y, const int *incY)
Definition:
c_dblas1.c:23
F77_incX
#define F77_incX
F77_incY
#define F77_incY
F77_N
#define F77_N
F77_INT
#define F77_INT
Definition:
cblas_f77.h:32
N
#define N
Definition:
example_user.c:10
Here is the call graph for this function:
Here is the caller graph for this function:
CBLAS
src
cblas_dcopy.c
Generated on Tue Apr 12 2022 14:48:56 for LAPACK by
1.9.1