LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_logical LAPACKE_dgt_nancheck ( lapack_int  n,
const double *  dl,
const double *  d,
const double *  du 
)

Definition at line 37 of file lapacke_dgt_nancheck.c.

41 {
42  return LAPACKE_d_nancheck( n-1, dl, 1 )
43  || LAPACKE_d_nancheck( n , d, 1 )
44  || LAPACKE_d_nancheck( n-1, du, 1 );
45 }
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)

Here is the call graph for this function: