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

Go to the source code of this file.

Functions/Subroutines

lapack_logical LAPACKE_dgt_nancheck (lapack_int n, const double *dl, const double *d, const double *du)

Function/Subroutine Documentation

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.

{
return LAPACKE_d_nancheck( n-1, dl, 1 )
|| LAPACKE_d_nancheck( n , d, 1 )
|| LAPACKE_d_nancheck( n-1, du, 1 );
}

Here is the call graph for this function: