heevd

Computes all eigenvalues and, optionally, eigenvectors of a complex Hermitian matrix. If eigenvectors are desired, it uses a divide and conquer algorithm.

  1. void heevd(char jobz, char uplo, f_int n, f_cfloat* a, f_int lda, f_float* w, f_cfloat* work, f_int lwork, f_float* rwork, f_int lrwork, f_int* iwork, f_int liwork, f_int info)
  2. void heevd(char jobz, char uplo, f_int n, f_cdouble* a, f_int lda, f_double* w, f_cdouble* work, f_int lwork, f_double* rwork, f_int lrwork, f_int* iwork, f_int liwork, f_int info)

Meta