Go to the source code of this file.
◆ LAPACKE_dsyequb()
| lapack_int LAPACKE_dsyequb |
( |
int | matrix_layout, |
|
|
char | uplo, |
|
|
lapack_int | n, |
|
|
const double * | a, |
|
|
lapack_int | lda, |
|
|
double * | s, |
|
|
double * | scond, |
|
|
double * | amax ) |
Definition at line 35 of file lapacke_dsyequb.c.
38{
40 double* work = NULL;
43 return -1;
44 }
45#ifndef LAPACK_DISABLE_NAN_CHECK
47
49 return -4;
50 }
51 }
52#endif
53
55 if( work == NULL ) {
57 goto exit_level_0;
58 }
59
61 work );
62
64exit_level_0:
67 }
68 return info;
69}
#define LAPACK_WORK_MEMORY_ERROR
int LAPACKE_get_nancheck(void)
lapack_int LAPACKE_dsyequb_work(int matrix_layout, char uplo, lapack_int n, const double *a, lapack_int lda, double *s, double *scond, double *amax, double *work)
#define LAPACKE_malloc(size)
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_dsy_nancheck(int matrix_layout, char uplo, lapack_int n, const double *a, lapack_int lda)