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

Definition at line 36 of file lapacke_slacn2.c.

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

Here is the call graph for this function: