LAPACK  3.5.0
LAPACK: Linear Algebra PACKage
 All Classes Files Functions Variables Typedefs Macros
lapacke_dpb_trans.c File Reference
#include "lapacke_utils.h"
Include dependency graph for lapacke_dpb_trans.c:

Go to the source code of this file.

Functions/Subroutines

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

Function/Subroutine Documentation

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

Definition at line 40 of file lapacke_dpb_trans.c.

{
if( LAPACKE_lsame( uplo, 'u' ) ) {
LAPACKE_dgb_trans( matrix_order, n, n, 0, kd, in, ldin, out, ldout );
} else if( LAPACKE_lsame( uplo, 'l' ) ) {
LAPACKE_dgb_trans( matrix_order, n, n, kd, 0, in, ldin, out, ldout );
}
}

Here is the call graph for this function:

Here is the caller graph for this function: