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

◆ cblas_drot()

void cblas_drot ( const CBLAS_INT  N,
double *  X,
const CBLAS_INT  incX,
double *  Y,
const CBLAS_INT  incY,
const double  c,
const double  s 
)

Definition at line 11 of file cblas_drot.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_drot(&F77_N, X, &F77_incX, Y, &F77_incY, &c, &s);
22 return;
23}
#define F77_incX
#define F77_incY
#define F77_N
#define F77_INT
#define F77_drot(...)
Definition cblas_f77.h:244
Here is the caller graph for this function: