LAPACK
3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
◆
get_transpose_type()
void get_transpose_type
(
char *
type
,
CBLAS_TRANSPOSE
*
trans
)
Definition at line
8
of file
auxiliary.c
.
8
{
9
if
( (strncmp( type,
"n"
,1 )==0)||(strncmp( type,
"N"
,1 )==0) )
10
*trans =
CblasNoTrans
;
11
else
if
( (strncmp( type,
"t"
,1 )==0)||(strncmp( type,
"T"
,1 )==0) )
12
*trans =
CblasTrans
;
13
else
if
( (strncmp( type,
"c"
,1 )==0)||(strncmp( type,
"C"
,1 )==0) )
14
*trans =
CblasConjTrans
;
15
else
*trans =
UNDEFINED
;
16
}
CblasNoTrans
@ CblasNoTrans
Definition
cblas.h:40
CblasTrans
@ CblasTrans
Definition
cblas.h:40
CblasConjTrans
@ CblasConjTrans
Definition
cblas.h:40
UNDEFINED
#define UNDEFINED
Definition
cblas_test.h:19
CBLAS
testing
auxiliary.c
Generated on Tue Nov 28 2023 11:55:11 for LAPACK by
1.9.7