LAPACK  3.5.0
LAPACK: Linear Algebra PACKage
 All Files Functions Typedefs Macros
lapacke_clacgv.c File Reference
#include "lapacke_utils.h"
Include dependency graph for lapacke_clacgv.c:

Go to the source code of this file.

Functions

lapack_int LAPACKE_clacgv (lapack_int n, lapack_complex_float *x, lapack_int incx)
 

Function Documentation

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 }
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)
#define ABS(x)
Definition: lapacke_utils.h:44

Here is the call graph for this function: