Function chpevd_
Computes all eigenvalues and, optionally, eigenvectors of a complex Hermitian matrix in packed storage. If eigenvectors are desired, it uses a divide and conquer algorithm.
extern(C) void chpevd_
(
char* jobz,
char* uplo,
int* n,
std .complex .Complex!(float)* ap,
float* w,
std .complex .Complex!(float)* z,
int* ldz,
std .complex .Complex!(float)* work,
int* lwork,
float* rwork,
int* lrwork,
int* iwork,
int* liwork,
int* info,
int jobz_len,
int uplo_len
);