LAPACK
3.11.0
LAPACK: Linear Algebra PACKage
cblas_drotm.c
1
#include "cblas.h"
2
#include "cblas_f77.h"
3
void
cblas_drotm(
const
CBLAS_INT N,
double
*X,
const
CBLAS_INT incX,
double
*Y,
4
const
CBLAS_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
src
cblas_drotm.c
Generated on Wed Mar 1 2023 17:31:40 for LAPACK by
1.8.13