LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_dgtcon_work()

lapack_int LAPACKE_dgtcon_work ( char  norm,
lapack_int  n,
const double *  dl,
const double *  d,
const double *  du,
const double *  du2,
const lapack_int ipiv,
double  anorm,
double *  rcond,
double *  work,
lapack_int iwork 
)

Definition at line 35 of file lapacke_dgtcon_work.c.

41 {
42  lapack_int info = 0;
43  /* Call LAPACK function and adjust info */
44  LAPACK_dgtcon( &norm, &n, dl, d, du, du2, ipiv, &anorm, rcond, work, iwork,
45  &info );
46  return info;
Here is the call graph for this function:
Here is the caller graph for this function:
lapack_int
#define lapack_int
Definition: lapack.h:21
LAPACK_dgtcon
void LAPACK_dgtcon(char const *norm, lapack_int const *n, double const *DL, double const *D, double const *DU, double const *DU2, lapack_int const *ipiv, double const *anorm, double *rcond, double *work, lapack_int *iwork, lapack_int *info)