LAPACK
3.9.0
LAPACK: Linear Algebra PACKage
cblas_drotm.c
Go to the documentation of this file.
1
#include "
cblas.h
"
2
#include "
cblas_f77.h
"
3
void
cblas_drotm
(
const
int
N
,
double
*X,
const
int
incX,
double
*Y,
4
const
int
incY,
const
double
*P)
5
{
6
#ifdef F77_INT
7
F77_INT
F77_N
=
N
,
F77_incX
=incX,
F77_incY
=incY;
8
#else
9
#define F77_N N
10
#define F77_incX incX
11
#define F77_incY incY
12
#endif
13
F77_drotm
( &
F77_N
, X, &
F77_incX
, Y, &
F77_incY
, P);
14
}
cblas_f77.h
F77_drotm
void F77_drotm(FINT, double *, FINT, double *, FINT, const double *)
F77_incY
#define F77_incY
cblas.h
F77_incX
#define F77_incX
cblas_drotm
void cblas_drotm(const int N, double *X, const int incX, double *Y, const int incY, const double *P)
Definition:
cblas_drotm.c:3
F77_N
#define F77_N
N
#define N
Definition:
example_user.c:10
CBLAS
src
cblas_drotm.c
Generated on Wed May 5 2021 15:10:30 for LAPACK by
1.8.16