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

◆ LAPACKE_dsb_trans()

void LAPACKE_dsb_trans ( int  matrix_layout,
char  uplo,
lapack_int  n,
lapack_int  kd,
const double *  in,
lapack_int  ldin,
double *  out,
lapack_int  ldout 
)

Definition at line 39 of file lapacke_dsb_trans.c.

43{
44 if( LAPACKE_lsame( uplo, 'u' ) ) {
45 LAPACKE_dgb_trans( matrix_layout, n, n, 0, kd, in, ldin, out, ldout );
46 } else if( LAPACKE_lsame( uplo, 'l' ) ) {
47 LAPACKE_dgb_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_dgb_trans(int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const double *in, lapack_int ldin, double *out, lapack_int ldout)
Here is the call graph for this function:
Here is the caller graph for this function: