LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ cblas_izamax()

CBLAS_INDEX cblas_izamax ( const int  N,
const void *  X,
const int  incX 
)

Definition at line 12 of file cblas_izamax.c.

13 {
14  CBLAS_INDEX iamax;
15 #ifdef F77_INT
16  F77_INT F77_N=N, F77_incX=incX;
17 #else
18  #define F77_N N
19  #define F77_incX incX
20 #endif
21  F77_izamax_sub( &F77_N, X, &F77_incX, &iamax);
22  return (iamax ? iamax-1 : 0);
23 }
Here is the call graph for this function:
Here is the caller graph for this function:
F77_incX
#define F77_incX
F77_N
#define F77_N
F77_izamax_sub
void F77_izamax_sub(FINT, const void *, FINT, FINT2)
N
#define N
Definition: example_user.c:10
CBLAS_INDEX
#define CBLAS_INDEX
Definition: cblas.h:16