scipy.linalg.lapack.cunmrz¶
-
scipy.linalg.lapack.
cunmrz
(a, tau, c[, side, trans, lwork, overwrite_c]) = <fortran object>¶ Wrapper for
cunmrz
.Parameters: - a : input rank-2 array(‘F’) with bounds (k,nt)
- tau : input rank-1 array(‘F’) with bounds (k)
- c : input rank-2 array(‘F’) with bounds (m,n)
Returns: - cq : rank-2 array(‘F’) with bounds (m,n) and c storage
- info : int
Other Parameters: - side : input string(len=1), optional
Default: ‘L’
- trans : input string(len=1), optional
Default: ‘N’
- overwrite_c : input int, optional
Default: 0
- lwork : input int, optional
Default: MAX((side[0]==’L’?n:m),1)