scipy.linalg.lapack.cunmrz_lwork#

scipy.linalg.lapack.cunmrz_lwork(m, n, side='L', trans='N') = <flapack function cunmrz_lwork>#

Query the optimal workspace for cunmrz (LAPACK cunmrz with lwork = -1).

Parameters:
mint

Number of rows of the matrix.

nint

Number of columns of the matrix.

sidestr, optional

'L' for Q @ c, 'R' for c @ Q. Default is 'L'.

transstr, optional

'N' to apply Q, 'C' to apply its conjugate transpose. Default is 'N'.

Returns:
workcomplex

Optimal lwork.

infoint

0 on success; if negative, the -info-th argument had an illegal value.