LAPACK
3.9.0
LAPACK: Linear Algebra PACKage
cblas_scopy.c
Go to the documentation of this file.
1
/*
2
* cblas_scopy.c
3
*
4
* The program is a C interface to scopy.
5
*
6
* Written by Keita Teranishi. 2/11/1998
7
*
8
*/
9
#include "
cblas.h
"
10
#include "
cblas_f77.h
"
11
void
cblas_scopy
(
const
int
N
,
const
float
*X,
12
const
int
incX,
float
*Y,
const
int
incY)
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_scopy
( &
F77_N
, X, &
F77_incX
, Y, &
F77_incY
);
22
}
F77_scopy
#define F77_scopy
Definition:
cblas_f77.h:52
cblas_f77.h
F77_incX
#define F77_incX
F77_N
#define F77_N
cblas.h
cblas_scopy
void cblas_scopy(const int N, const float *X, const int incX, float *Y, const int incY)
Definition:
cblas_scopy.c:11
N
#define N
Definition:
example_user.c:10
F77_incY
#define F77_incY
CBLAS
src
cblas_scopy.c
Generated on Wed May 5 2021 15:10:30 for LAPACK by
1.8.16