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

◆ cblas_scnrm2()

float cblas_scnrm2 ( const CBLAS_INT  N,
const void *  X,
const CBLAS_INT  incX 
)

Definition at line 12 of file cblas_scnrm2.c.

13{
14 float nrm2;
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_scnrm2_sub( &F77_N, X, &F77_incX, &nrm2);
22 return nrm2;
23}
#define F77_INT
#define F77_scnrm2_sub(...)
Definition cblas_f77.h:273
#define F77_incX
#define F77_N
Here is the caller graph for this function: