LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
int F77_isamax ( const int *  N,
const float *  X,
const int *  incX 
)

Definition at line 78 of file c_sblas1.c.

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

Here is the call graph for this function: