LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ cblas_izamax()

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

Definition at line 12 of file cblas_izamax.c.

13{
14#ifdef F77_INT
15 F77_INT F77_N=N, F77_incX=incX, F77_iamax;
16#else
17 #define F77_N N
18 #define F77_incX incX
19 CBLAS_INT F77_iamax;
20#endif
21 F77_izamax_sub( &F77_N, X, &F77_incX, &F77_iamax );
22 return ( F77_iamax > 0 )
23 ? (CBLAS_INDEX)( F77_iamax-1 )
24 : (CBLAS_INDEX) 0;
25}
#define CBLAS_INDEX
Definition cblas.h:15
#define CBLAS_INT
Definition cblas.h:24
#define F77_INT
#define F77_izamax_sub(...)
Definition cblas_f77.h:290
#define F77_incX
#define F77_N
Here is the caller graph for this function: