LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ cblas_cscal()

void cblas_cscal ( const CBLAS_INT  N,
const void *  alpha,
void *  X,
const CBLAS_INT  incX 
)

Definition at line 11 of file cblas_cscal.c.

13{
14#ifdef F77_INT
15 F77_INT F77_N=N, F77_incX=incX;
16#else
17 #define F77_N N
18 #define F77_incX incX
19#endif
20 F77_cscal( &F77_N, alpha, X, &F77_incX);
21}
#define F77_incX
#define F77_N
#define F77_cscal(...)
Definition: cblas_f77.h:256
#define F77_INT
Definition: cblas_f77.h:32
#define N
Definition: example_user.c:10
Here is the caller graph for this function: