LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void F77_daxpy ( const int *  N,
const double *  alpha,
const double *  X,
const int *  incX,
double *  Y,
const 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 int N, const double alpha, const double *X, const int incX, double *Y, const int incY)
Definition: cblas_daxpy.c:11
#define N
Definition: example_user.c:10

Here is the call graph for this function: