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

Go to the source code of this file.

Functions

lapack_logical LAPACKE_sgt_nancheck (lapack_int n, const float *dl, const float *d, const float *du)
 

Function Documentation

lapack_logical LAPACKE_sgt_nancheck ( lapack_int  n,
const float *  dl,
const float *  d,
const float *  du 
)

Definition at line 37 of file lapacke_sgt_nancheck.c.

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

Here is the call graph for this function: