trsyl - multiple declarations

Function trsyl

void trsyl (
  char trana,
  char tranb,
  int isgn,
  int m,
  int n,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* b,
  int ldb,
  std.complex.Complex!(double)* c,
  int ldc,
  double* scale,
  ref int info
);

Function trsyl

void trsyl (
  char trana,
  char tranb,
  int isgn,
  int m,
  int n,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* b,
  int ldb,
  std.complex.Complex!(float)* c,
  int ldc,
  float* scale,
  ref int info
);

Function trsyl

void trsyl (
  char trana,
  char tranb,
  int isgn,
  int m,
  int n,
  double* a,
  int lda,
  double* b,
  int ldb,
  double* c,
  int ldc,
  double* scale,
  ref int info
);

Function trsyl

Solves the Sylvester matrix equation A X +/- X B=C where A and B are upper quasi-triangular, and may be transposed.

void trsyl (
  char trana,
  char tranb,
  int isgn,
  int m,
  int n,
  float* a,
  int lda,
  float* b,
  int ldb,
  float* c,
  int ldc,
  float* scale,
  ref int info
);