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

Go to the source code of this file.

Functions/Subroutines

lapack_logical LAPACKE_ssb_nancheck (int matrix_order, char uplo, lapack_int n, lapack_int kd, const float *ab, lapack_int ldab)

Function/Subroutine Documentation

lapack_logical LAPACKE_ssb_nancheck ( int  matrix_order,
char  uplo,
lapack_int  n,
lapack_int  kd,
const float *  ab,
lapack_int  ldab 
)

Definition at line 37 of file lapacke_ssb_nancheck.c.

{
if( LAPACKE_lsame( uplo, 'u' ) ) {
return LAPACKE_sgb_nancheck( matrix_order, n, n, 0, kd, ab, ldab );
} else if( LAPACKE_lsame( uplo, 'l' ) ) {
return LAPACKE_sgb_nancheck( matrix_order, n, n, kd, 0, ab, ldab );
}
return (lapack_logical) 0;
}

Here is the call graph for this function:

Here is the caller graph for this function: