scipy.linalg.lapack.dormrz_lwork#
- scipy.linalg.lapack.dormrz_lwork(m, n, side='L', trans='N') = <flapack function dormrz_lwork>#
Query the optimal workspace for
dormrz(LAPACKdormrzwithlwork = -1).- Parameters:
- mint
Number of rows of the matrix.
- nint
Number of columns of the matrix.
- sidestr, optional
'L'forQ @ c,'R'forc @ Q. Default is'L'.- transstr, optional
'N'to applyQ,'T'to apply its transpose. Default is'N'.
- Returns:
- workfloat
Optimal lwork.
- infoint
0 on success; if negative, the
-info-th argument had an illegal value.