LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_cgtcon ( 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 
)

Definition at line 36 of file lapacke_cgtcon.c.

42 {
43  lapack_int info = 0;
44  lapack_complex_float* work = NULL;
45 #ifndef LAPACK_DISABLE_NAN_CHECK
46  /* Optionally check input matrices for NaNs */
47  if( LAPACKE_s_nancheck( 1, &anorm, 1 ) ) {
48  return -8;
49  }
50  if( LAPACKE_c_nancheck( n, d, 1 ) ) {
51  return -4;
52  }
53  if( LAPACKE_c_nancheck( n-1, dl, 1 ) ) {
54  return -3;
55  }
56  if( LAPACKE_c_nancheck( n-1, du, 1 ) ) {
57  return -5;
58  }
59  if( LAPACKE_c_nancheck( n-2, du2, 1 ) ) {
60  return -6;
61  }
62 #endif
63  /* Allocate memory for working array(s) */
64  work = (lapack_complex_float*)
65  LAPACKE_malloc( sizeof(lapack_complex_float) * MAX(1,2*n) );
66  if( work == NULL ) {
68  goto exit_level_0;
69  }
70  /* Call middle-level interface */
71  info = LAPACKE_cgtcon_work( norm, n, dl, d, du, du2, ipiv, anorm, rcond,
72  work );
73  /* Release memory and exit */
74  LAPACKE_free( work );
75 exit_level_0:
76  if( info == LAPACK_WORK_MEMORY_ERROR ) {
77  LAPACKE_xerbla( "LAPACKE_cgtcon", info );
78  }
79  return info;
80 }
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
#define lapack_complex_float
Definition: lapacke.h:74
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
#define MAX(x, y)
Definition: lapacke_utils.h:47
lapack_logical LAPACKE_c_nancheck(lapack_int n, const lapack_complex_float *x, lapack_int incx)
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
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)
void LAPACKE_xerbla(const char *name, lapack_int info)
#define lapack_int
Definition: lapacke.h:47

Here is the call graph for this function: