LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_cgtcon_work()

lapack_int LAPACKE_cgtcon_work ( char  norm,
lapack_int  n,
const lapack_complex_float dl,
const lapack_complex_float d,
const lapack_complex_float du,
const lapack_complex_float du2,
const lapack_int ipiv,
float  anorm,
float *  rcond,
lapack_complex_float work 
)

Definition at line 35 of file lapacke_cgtcon_work.c.

43 {
44  lapack_int info = 0;
45  /* Call LAPACK function and adjust info */
46  LAPACK_cgtcon( &norm, &n, dl, d, du, du2, ipiv, &anorm, rcond, work,
47  &info );
48  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_cgtcon
void LAPACK_cgtcon(char const *norm, lapack_int const *n, lapack_complex_float const *DL, lapack_complex_float const *D, lapack_complex_float const *DU, lapack_complex_float const *DU2, lapack_int const *ipiv, float const *anorm, float *rcond, lapack_complex_float *work, lapack_int *info)