geevx - multiple declarations

Function geevx

void geevx (
  char balanc,
  char jobvl,
  char jobvr,
  char sense,
  int n,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* w,
  std.complex.Complex!(double)* vl,
  int ldvl,
  std.complex.Complex!(double)* vr,
  int ldvr,
  int ilo,
  int ihi,
  double* scale,
  double* abnrm,
  double* rconde,
  double* rcondv,
  std.complex.Complex!(double)* work,
  int lwork,
  double* rwork,
  ref int info
);

Function geevx

void geevx (
  char balanc,
  char jobvl,
  char jobvr,
  char sense,
  int n,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* w,
  std.complex.Complex!(float)* vl,
  int ldvl,
  std.complex.Complex!(float)* vr,
  int ldvr,
  int ilo,
  int ihi,
  float* scale,
  float* abnrm,
  float* rconde,
  float* rcondv,
  std.complex.Complex!(float)* work,
  int lwork,
  float* rwork,
  ref int info
);

Function geevx

void geevx (
  char balanc,
  char jobvl,
  char jobvr,
  char sense,
  int n,
  double* a,
  int lda,
  double* wr,
  double* wi,
  double* vl,
  int ldvl,
  double* vr,
  int ldvr,
  int ilo,
  int ihi,
  double* scale,
  double* abnrm,
  double* rconde,
  double* rcondv,
  double* work,
  int lwork,
  int* iwork,
  ref int info
);

Function geevx

Computes the eigenvalues and left and right eigenvectors of a general matrix, with preliminary balancing of the matrix, and computes reciprocal condition numbers for the eigenvalues and right eigenvectors.

void geevx (
  char balanc,
  char jobvl,
  char jobvr,
  char sense,
  int n,
  float* a,
  int lda,
  float* wr,
  float* wi,
  float* vl,
  int ldvl,
  float* vr,
  int ldvr,
  int ilo,
  int ihi,
  float* scale,
  float* abnrm,
  float* rconde,
  float* rcondv,
  float* work,
  int lwork,
  int* iwork,
  ref int info
);