LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_clacn2 ( lapack_int  n,
lapack_complex_float v,
lapack_complex_float x,
float *  est,
lapack_int kase,
lapack_int isave 
)

Definition at line 36 of file lapacke_clacn2.c.

39 {
40 #ifndef LAPACK_DISABLE_NAN_CHECK
41  /* Optionally check input matrices for NaNs */
42  if( LAPACKE_s_nancheck( 1, est, 1 ) ) {
43  return -5;
44  }
45  if( LAPACKE_c_nancheck( n, x, 1 ) ) {
46  return -3;
47  }
48 #endif
49  return LAPACKE_clacn2_work( n, v, x, est, kase, isave );
50 }
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
lapack_logical LAPACKE_c_nancheck(lapack_int n, const lapack_complex_float *x, lapack_int incx)
lapack_int LAPACKE_clacn2_work(lapack_int n, lapack_complex_float *v, lapack_complex_float *x, float *est, lapack_int *kase, lapack_int *isave)

Here is the call graph for this function: