LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void F77_zaxpy ( const int *  N,
const void *  alpha,
void *  X,
const int *  incX,
void *  Y,
const int *  incY 
)

Definition at line 11 of file c_zblas1.c.

13 {
14  cblas_zaxpy(*N, alpha, X, *incX, Y, *incY);
15  return;
16 }
void cblas_zaxpy(const int N, const void *alpha, const void *X, const int incX, void *Y, const int incY)
Definition: cblas_zaxpy.c:11
#define N
Definition: example_user.c:10

Here is the call graph for this function: