LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages

◆ F77_daxpy()

void F77_daxpy ( const CBLAS_INT * N,
const double * alpha,
const double * X,
const CBLAS_INT * incX,
double * Y,
const CBLAS_INT * incY )

Definition at line 16 of file c_dblas1.c.

18{
19 cblas_daxpy(*N, *alpha, X, *incX, Y, *incY);
20 return;
21}
void cblas_daxpy(const CBLAS_INT N, const double alpha, const double *X, const CBLAS_INT incX, double *Y, const CBLAS_INT incY)
Definition cblas_daxpy.c:11
Here is the call graph for this function: