LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ cblas_isamax()

CBLAS_INDEX cblas_isamax ( const int  N,
const float *  X,
const int  incX 
)

Definition at line 12 of file cblas_isamax.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_isamax_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_isamax_sub
void F77_isamax_sub(FINT, const float *, FINT, FINT2)
F77_N
#define F77_N
N
#define N
Definition: example_user.c:10
CBLAS_INDEX
#define CBLAS_INDEX
Definition: cblas.h:16