SciPy

This is documentation for an old release of SciPy (version 1.2.0). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.linalg.lapack.zgerqf

scipy.linalg.lapack.zgerqf(a[, lwork, overwrite_a]) = <fortran object>

Wrapper for zgerqf.

Parameters:
a : input rank-2 array(‘D’) with bounds (m,n)
Returns:
qr : rank-2 array(‘D’) with bounds (m,n) and a storage
tau : rank-1 array(‘D’) with bounds (MIN(m,n))
work : rank-1 array(‘D’) with bounds (MAX(lwork,1))
info : int
Other Parameters:
 
overwrite_a : input int, optional

Default: 0

lwork : input int, optional

Default: max(3*m,1)

Previous topic

scipy.linalg.lapack.cgerqf

Next topic

scipy.linalg.lapack.sgesdd