LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
int F77_izamax ( const int *  N,
const void *  X,
const int *  incX 
)

Definition at line 60 of file c_zblas1.c.

61 {
62  if (*N < 1 || *incX < 1) return(0);
63  return(cblas_izamax(*N, X, *incX)+1);
64 }
CBLAS_INDEX cblas_izamax(const int N, const void *X, const int incX)
Definition: cblas_izamax.c:12
#define N
Definition: example_user.c:10

Here is the call graph for this function: