Function strsyl_
Solves the Sylvester matrix equation A X +/- X B=C where A and B are upper quasi-triangular, and may be transposed.
extern(C) void strsyl_
(
char* trana,
char* tranb,
int* isgn,
int* m,
int* n,
float* a,
int* lda,
float* b,
int* ldb,
float* c,
int* ldc,
float* scale,
int* info,
int trana_len,
int tranb_len
);