hsein - multiple declarations

Function hsein

void hsein (
  char side,
  char eigsrc,
  char initv,
  int select,
  int n,
  double* h,
  int ldh,
  double* wr,
  double* wi,
  double* vl,
  int ldvl,
  double* vr,
  int ldvr,
  int mm,
  int m,
  double* work,
  int ifaill,
  int ifailr,
  ref int info
);

Function hsein

void hsein (
  char side,
  char eigsrc,
  char initv,
  int select,
  int n,
  std.complex.Complex!(float)* h,
  int ldh,
  std.complex.Complex!(float)* w,
  std.complex.Complex!(float)* vl,
  int ldvl,
  std.complex.Complex!(float)* vr,
  int ldvr,
  int mm,
  int m,
  std.complex.Complex!(float)* work,
  float* rwork,
  int ifaill,
  int ifailr,
  ref int info
);

Function hsein

void hsein (
  char side,
  char eigsrc,
  char initv,
  int select,
  int n,
  std.complex.Complex!(double)* h,
  int ldh,
  std.complex.Complex!(double)* w,
  std.complex.Complex!(double)* vl,
  int ldvl,
  std.complex.Complex!(double)* vr,
  int ldvr,
  int mm,
  int m,
  std.complex.Complex!(double)* work,
  double* rwork,
  int ifaill,
  int ifailr,
  ref int info
);

Function hsein

Computes specified right and/or left eigenvectors of an upper Hessenberg matrix by inverse iteration.

void hsein (
  char side,
  char eigsrc,
  char initv,
  int select,
  int n,
  float* h,
  int ldh,
  float* wr,
  float* wi,
  float* vl,
  int ldvl,
  float* vr,
  int ldvr,
  int mm,
  int m,
  float* work,
  int ifaill,
  int ifailr,
  ref int info
);