hetrd - multiple declarations

Function hetrd

void hetrd (
  char uplo,
  int n,
  std.complex.Complex!(double)* a,
  int lda,
  double* d,
  double* e,
  std.complex.Complex!(double)* tau,
  std.complex.Complex!(double)* work,
  int lwork,
  ref int info
);

Function hetrd

Reduces a Hermitian matrix to real symmetric tridiagonal form by an orthogonal/unitary similarity transformation.

void hetrd (
  char uplo,
  int n,
  std.complex.Complex!(float)* a,
  int lda,
  float* d,
  float* e,
  std.complex.Complex!(float)* tau,
  std.complex.Complex!(float)* work,
  int lwork,
  ref int info
);