hpevx - multiple declarations

Function hpevx

Computes selected eigenvalues and eigenvectors of a Hermitian matrix in packed storage.

void hpevx (
  char jobz,
  char range,
  char uplo,
  int n,
  std.complex.Complex!(float)* ap,
  float* vl,
  float* vu,
  int il,
  int iu,
  float* abstol,
  int m,
  float* w,
  std.complex.Complex!(float)* z,
  int ldz,
  std.complex.Complex!(float)* work,
  float* rwork,
  int* iwork,
  int ifail,
  ref int info
);

Function hpevx

void hpevx (
  char jobz,
  char range,
  char uplo,
  int n,
  std.complex.Complex!(double)* ap,
  double* vl,
  double* vu,
  int il,
  int iu,
  double* abstol,
  int m,
  double* w,
  std.complex.Complex!(double)* z,
  int ldz,
  std.complex.Complex!(double)* work,
  double* rwork,
  int* iwork,
  int ifail,
  ref int info
);