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

◆ get_diag_type()

void get_diag_type ( char *  type,
CBLAS_DIAG diag 
)

Definition at line 25 of file auxiliary.c.

25 {
26 if( (strncmp( type,"u",1 )==0)||(strncmp( type,"U",1 )==0) )
27 *diag = CblasUnit;
28 else if( (strncmp( type,"n",1 )==0)||(strncmp( type,"N",1 )==0) )
29 *diag = CblasNonUnit;
30 else *diag = UNDEFINED;
31}
@ CblasUnit
Definition cblas.h:42
@ CblasNonUnit
Definition cblas.h:42
#define UNDEFINED
Definition cblas_test.h:19
Here is the caller graph for this function: