scipy.linalg.lapack.zunmrz#
- scipy.linalg.lapack.zunmrz(a, tau, c[, side, trans, lwork, overwrite_c]) = <fortran function zunmrz>#
Wrapper for
zunmrz
.- Parameters:
- ainput rank-2 array(‘D’) with bounds (k,nt)
- tauinput rank-1 array(‘D’) with bounds (k)
- cinput rank-2 array(‘D’) with bounds (m,n)
- Returns:
- cqrank-2 array(‘D’) with bounds (m,n) and c storage
- infoint
- Other Parameters:
- sideinput bytes, optional
Default: ‘L’
- transinput bytes, optional
Default: ‘N’
- overwrite_cinput int, optional
Default: 0
- lworkinput int, optional
Default: MAX((side==’L’?n:m),1)