LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ F77_icamax()

int F77_icamax ( const int *  N,
const void *  X,
const int *  incX 
)

Definition at line 60 of file c_cblas1.c.

61 {
62  if (*N < 1 || *incX < 1) return(0);
63  return (cblas_icamax(*N, X, *incX)+1);
64 }
Here is the call graph for this function:
cblas_icamax
CBLAS_INDEX cblas_icamax(const int N, const void *X, const int incX)
Definition: cblas_icamax.c:12
N
#define N
Definition: example_user.c:10