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

◆ LAPACKE_cpb_trans()

void LAPACKE_cpb_trans ( int  matrix_layout,
char  uplo,
lapack_int  n,
lapack_int  kd,
const lapack_complex_float in,
lapack_int  ldin,
lapack_complex_float out,
lapack_int  ldout 
)

Definition at line 39 of file lapacke_cpb_trans.c.

43{
44 if( LAPACKE_lsame( uplo, 'u' ) ) {
45 LAPACKE_cgb_trans( matrix_layout, n, n, 0, kd, in, ldin, out, ldout );
46 } else if( LAPACKE_lsame( uplo, 'l' ) ) {
47 LAPACKE_cgb_trans( matrix_layout, n, n, kd, 0, in, ldin, out, ldout );
48 }
49}
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
void LAPACKE_cgb_trans(int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
Here is the call graph for this function:
Here is the caller graph for this function: