35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HEEV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HEEV_H_ 57 void cheev_(
char* jobz,
char* uplo,
int* n,
float* A,
int* lda,
float* w,
float* work,
int* lwork,
float* rwork,
int* info );
58 void zheev_(
char* jobz,
char* uplo,
int* n,
double* A,
int* lda,
double* w,
double* work,
int* lwork,
double* rwork,
int* info );
78 inline void heev(
char jobz,
char uplo,
int n, complex<float>* A,
int lda,
79 float* w, complex<float>* work,
int lwork,
float* rwork,
int* info );
81 inline void heev(
char jobz,
char uplo,
int n, complex<double>* A,
int lda,
82 double* w, complex<double>* work,
int lwork,
float* rwork,
int* info );
128 inline void heev(
char jobz,
char uplo,
int n, complex<float>* A,
int lda,
129 float* w, complex<float>* work,
int lwork,
float* rwork,
int* info )
131 cheev_( &jobz, &uplo, &n, reinterpret_cast<float*>( A ), &lda, w,
132 reinterpret_cast<float*>( work ), &lwork, rwork, info );
178 inline void heev(
char jobz,
char uplo,
int n, complex<double>* A,
int lda,
179 double* w, complex<double>* work,
int lwork,
double* rwork,
int* info )
181 zheev_( &jobz, &uplo, &n, reinterpret_cast<double*>( A ), &lda, w,
182 reinterpret_cast<double*>( work ), &lwork, rwork, info );
void heev(char jobz, char uplo, int n, complex< float > *A, int lda, float *w, complex< float > *work, int lwork, float *rwork, int *info)
LAPACK kernel for computing the eigenvalues of the given dense Hermitian single precision column-majo...
Definition: heev.h:128
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the complex data type.