scipy.linalg.lapack.sorgqr#
- scipy.linalg.lapack.sorgqr(a, tau, lwork=3 * n, overwrite_a=0) = <flapack function sorgqr>#
Generate the orthogonal/unitary factor
Qof a QR factorization (LAPACKsorgqr).- Parameters:
- andarray
The factorization the matching
geqrfreturned.- taundarray
Reflector scalars from the matching factorization.
- lworkint, optional
Workspace size, at least
n; -1 requests the query. Default is3 * n.- overwrite_aint, optional
If nonzero, a may be overwritten in place. Default is 0.
- Returns:
- qndarray
The factor
Q, overwriting a.- workndarray
Workspace actually used;
work[0]is the optimal lwork.- infoint
0 on success; if negative, the
-info-th argument had an illegal value.