hbtrd - multiple declarations

Function hbtrd

Reduces a Hermitian band matrix to real symmetric tridiagonal form by a unitary similarity transformation.

void hbtrd (
  char vect,
  char uplo,
  int n,
  int kd,
  std.complex.Complex!(float)* ab,
  int ldab,
  float* d,
  float* e,
  std.complex.Complex!(float)* q,
  int ldq,
  std.complex.Complex!(float)* work,
  ref int info
);

Function hbtrd

void hbtrd (
  char vect,
  char uplo,
  int n,
  int kd,
  std.complex.Complex!(double)* ab,
  int ldab,
  double* d,
  double* e,
  std.complex.Complex!(double)* q,
  int ldq,
  std.complex.Complex!(double)* work,
  ref int info
);