trevc - multiple declarations

Function trevc

Computes some or all of the right and/or left eigenvectors of an upper quasi-triangular matrix.

void trevc (
  char side,
  char howmny,
  int select,
  int n,
  float* t,
  int ldt,
  float* vl,
  int ldvl,
  float* vr,
  int ldvr,
  int mm,
  int m,
  float* work,
  ref int info
);

Function trevc

void trevc (
  char side,
  char howmny,
  int select,
  int n,
  double* t,
  int ldt,
  double* vl,
  int ldvl,
  double* vr,
  int ldvr,
  int mm,
  int m,
  double* work,
  ref int info
);

Function trevc

void trevc (
  char side,
  char howmny,
  int select,
  int n,
  std.complex.Complex!(float)* t,
  int ldt,
  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,
  ref int info
);

Function trevc

void trevc (
  char side,
  char howmny,
  int select,
  int n,
  std.complex.Complex!(double)* t,
  int ldt,
  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,
  ref int info
);