Function chbev_

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

extern(C) void chbev_ (
  char* jobz,
  char* uplo,
  int* n,
  int* kd,
  std.complex.Complex!(float)* ab,
  int* ldab,
  float* w,
  std.complex.Complex!(float)* z,
  int* ldz,
  std.complex.Complex!(float)* work,
  float* rwork,
  int* info,
  int jobz_len,
  int uplo_len
);