scipy.linalg.lapack.dtrsyl¶
- 
scipy.linalg.lapack.dtrsyl(a, b, c[, trana, tranb, isgn, overwrite_c]) = <fortran object>¶ Wrapper for
dtrsyl.Parameters: - a : input rank-2 array(‘d’) with bounds (m,m)
 - b : input rank-2 array(‘d’) with bounds (n,n)
 - c : input rank-2 array(‘d’) with bounds (m,n)
 
Returns: - x : rank-2 array(‘d’) with bounds (m,n) and c storage
 - scale : float
 - info : int
 
Other Parameters: - trana : input string(len=1), optional
 Default: ‘N’
- tranb : input string(len=1), optional
 Default: ‘N’
- isgn : input int, optional
 Default: 1
- overwrite_c : input int, optional
 Default: 0
