LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_ddisna ( char  job,
lapack_int  m,
lapack_int  n,
const double *  d,
double *  sep 
)

Definition at line 36 of file lapacke_ddisna.c.

38 {
39 #ifndef LAPACK_DISABLE_NAN_CHECK
40  /* Optionally check input matrices for NaNs */
41  if( LAPACKE_d_nancheck( MIN(m,n), d, 1 ) ) {
42  return -4;
43  }
44 #endif
45  return LAPACKE_ddisna_work( job, m, n, d, sep );
46 }
lapack_int LAPACKE_ddisna_work(char job, lapack_int m, lapack_int n, const double *d, double *sep)
#define MIN(x, y)
Definition: lapacke_utils.h:50
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)

Here is the call graph for this function: