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

Go to the source code of this file.

Functions/Subroutines

lapack_int LAPACKE_clacn2 (lapack_int n, lapack_complex_float *v, lapack_complex_float *x, float *est, lapack_int *kase, lapack_int *isave)

Function/Subroutine Documentation

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.

{
#ifndef LAPACK_DISABLE_NAN_CHECK
/* Optionally check input matrices for NaNs */
if( LAPACKE_s_nancheck( 1, est, 1 ) ) {
return -5;
}
if( LAPACKE_c_nancheck( n, x, 1 ) ) {
return -3;
}
#endif
return LAPACKE_clacn2_work( n, v, x, est, kase, isave );
}

Here is the call graph for this function: