LAPACK
3.9.1
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
CBLAS_INDEX
N
,
double
*X,
const
CBLAS_INDEX
incX,
double
*Y,
4
const
CBLAS_INDEX
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_INDEX
#define CBLAS_INDEX
Definition:
cblas.h:16
cblas.h
F77_incX
#define F77_incX
F77_incY
#define F77_incY
cblas_drotm
void cblas_drotm(const CBLAS_INDEX N, double *X, const CBLAS_INDEX incX, double *Y, const CBLAS_INDEX incY, const double *P)
Definition:
cblas_drotm.c:3
F77_N
#define F77_N
F77_drotm
#define F77_drotm(...)
Definition:
cblas_f77.h:220
F77_INT
#define F77_INT
Definition:
cblas_f77.h:30
cblas_f77.h
N
#define N
Definition:
example_user.c:10
CBLAS
src
cblas_drotm.c
Generated on Thu Apr 1 2021 10:08:15 for LAPACK by
1.9.1