trexc - multiple declarations

Function trexc

Reorders the Schur factorization of a matrix by an orthogonal similarity transformation.

void trexc (
  char compq,
  int n,
  float* t,
  int ldt,
  float* q,
  int ldq,
  int ifst,
  int ilst,
  float* work,
  ref int info
);

Function trexc

void trexc (
  char compq,
  int n,
  double* t,
  int ldt,
  double* q,
  int ldq,
  int ifst,
  int ilst,
  double* work,
  ref int info
);

Function trexc

void trexc (
  char compq,
  int n,
  std.complex.Complex!(float)* t,
  int ldt,
  std.complex.Complex!(float)* q,
  int ldq,
  int ifst,
  int ilst,
  ref int info
);

Function trexc

void trexc (
  char compq,
  int n,
  std.complex.Complex!(double)* t,
  int ldt,
  std.complex.Complex!(double)* q,
  int ldq,
  int ifst,
  int ilst,
  ref int info
);