LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void LAPACKE_zhb_trans ( int  matrix_layout,
char  uplo,
lapack_int  n,
lapack_int  kd,
const lapack_complex_double in,
lapack_int  ldin,
lapack_complex_double out,
lapack_int  ldout 
)

Definition at line 40 of file lapacke_zhb_trans.c.

44 {
45  if( LAPACKE_lsame( uplo, 'u' ) ) {
46  LAPACKE_zgb_trans( matrix_layout, n, n, 0, kd, in, ldin, out, ldout );
47  } else if( LAPACKE_lsame( uplo, 'l' ) ) {
48  LAPACKE_zgb_trans( matrix_layout, n, n, kd, 0, in, ldin, out, ldout );
49  }
50 }
void LAPACKE_zgb_trans(int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const lapack_complex_double *in, lapack_int ldin, lapack_complex_double *out, lapack_int ldout)
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:36

Here is the call graph for this function:

Here is the caller graph for this function: