LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
int F77_idamax ( const int *  N,
const double *  X,
const int *  incX 
)

Definition at line 79 of file c_dblas1.c.

80 {
81  if (*N < 1 || *incX < 1) return(0);
82  return (cblas_idamax(*N, X, *incX)+1);
83 }
CBLAS_INDEX cblas_idamax(const int N, const double *X, const int incX)
Definition: cblas_idamax.c:12
#define N
Definition: example_user.c:10

Here is the call graph for this function: