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

Definition at line 40 of file lapacke_ssb_trans.c.

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

Here is the call graph for this function:

Here is the caller graph for this function: