scipy.linalg.lapack.zgemqrt#
- scipy.linalg.lapack.zgemqrt(v, t, c, side='L', trans='N', overwrite_c=0) = <flapack function zgemqrt>#
Multiply a matrix by the
Qof a compact-WY QR factorization (LAPACKzgemqrt).- Parameters:
- vndarray
The reflectors
geqrtleft in its a.- tndarray
Upper triangular block reflectors, shape
(nb, k). Its row count is taken as the block size and its column count as the reflector count.- cndarray
Matrix to multiply, shape
(m, n).- sidestr, optional
'L'forQ @ c,'R'forc @ Q. Default is'L'.- transstr, optional
'N'to applyQ,'C'to apply its conjugate transpose. Default is'N'.- overwrite_cint, optional
If nonzero, c may be overwritten in place. Default is 0.
- Returns:
- cndarray
The product, overwriting c.
- infoint
0 on success; if negative, the
-info-th argument had an illegal value.