scipy.linalg.lapack.cgeqp3#

scipy.linalg.lapack.cgeqp3(a[, lwork, overwrite_a]) = <fortran function cgeqp3>#

cgeqp3 的包装器。

参数:
a输入秩为 2 的数组('F'),边界为 (m,n)
返回值:
qr秩为 2 的数组('F'),边界为 (m,n) 且为 a 的存储
jpvt秩为 1 的数组('i'),边界为 (n)
tau秩为 1 的数组('F'),边界为 (MIN(m, n))
work秩为 1 的数组('F'),边界为 (MAX(lwork, 1))
infoint
其他参数:
overwrite_a输入 int,可选

默认值:0

lwork输入 int,可选

默认值:max(3*(n+1),1)