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

Go to the source code of this file.

Functions/Subroutines

lapack_int LAPACKE_zlacn2 (lapack_int n, lapack_complex_double *v, lapack_complex_double *x, double *est, lapack_int *kase, lapack_int *isave)

Function/Subroutine Documentation

lapack_int LAPACKE_zlacn2 ( lapack_int  n,
lapack_complex_double v,
lapack_complex_double x,
double *  est,
lapack_int kase,
lapack_int isave 
)

Definition at line 36 of file lapacke_zlacn2.c.

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

Here is the call graph for this function: