heev - multiple declarations

Function heev

void heev (
  char jobz,
  char uplo,
  int n,
  std.complex.Complex!(double)* a,
  int lda,
  double* w,
  std.complex.Complex!(double)* work,
  int lwork,
  double* rwork,
  ref int info
);

Function heev

Computes all eigenvalues and, optionally, eigenvectors of a complex Hermitian matrix.

void heev (
  char jobz,
  char uplo,
  int n,
  std.complex.Complex!(float)* a,
  int lda,
  float* w,
  std.complex.Complex!(float)* work,
  int lwork,
  float* rwork,
  ref int info
);