LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ LAPACKE_ddisna()

lapack_int LAPACKE_ddisna ( char  job,
lapack_int  m,
lapack_int  n,
const double *  d,
double *  sep 
)

Definition at line 35 of file lapacke_ddisna.c.

37{
38#ifndef LAPACK_DISABLE_NAN_CHECK
39 if( LAPACKE_get_nancheck() ) {
40 /* Optionally check input matrices for NaNs */
41 if( LAPACKE_d_nancheck( MIN(m,n), d, 1 ) ) {
42 return -4;
43 }
44 }
45#endif
46 return LAPACKE_ddisna_work( job, m, n, d, sep );
47}
lapack_int LAPACKE_ddisna_work(char job, lapack_int m, lapack_int n, const double *d, double *sep)
int LAPACKE_get_nancheck(void)
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)
#define MIN(x, y)
Definition: lapacke_utils.h:49
Here is the call graph for this function: