scipy.linalg.lapack.dgeqp3#

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

包装器 dgeqp3

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

默认值:0

lwork输入 int,可选

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