LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_clacgv ( lapack_int  n,
lapack_complex_float x,
lapack_int  incx 
)

Definition at line 36 of file lapacke_clacgv.c.

38 {
39 #ifndef LAPACK_DISABLE_NAN_CHECK
40  /* Optionally check input matrices for NaNs */
41  if( LAPACKE_c_nancheck( 1+(n-1)*ABS(incx), x, incx ) ) {
42  return -2;
43  }
44 #endif
45  return LAPACKE_clacgv_work( n, x, incx );
46 }
#define ABS(x)
Definition: lapacke_utils.h:44
lapack_int LAPACKE_clacgv_work(lapack_int n, lapack_complex_float *x, lapack_int incx)
lapack_logical LAPACKE_c_nancheck(lapack_int n, const lapack_complex_float *x, lapack_int incx)

Here is the call graph for this function: