LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_cptcon_work()

lapack_int LAPACKE_cptcon_work ( lapack_int  n,
const float *  d,
const lapack_complex_float e,
float  anorm,
float *  rcond,
float *  work 
)

Definition at line 35 of file lapacke_cptcon_work.c.

39 {
40  lapack_int info = 0;
41  /* Call LAPACK function and adjust info */
42  LAPACK_cptcon( &n, d, e, &anorm, rcond, work, &info );
43  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_cptcon
void LAPACK_cptcon(lapack_int const *n, float const *D, lapack_complex_float const *E, float const *anorm, float *rcond, float *rwork, lapack_int *info)