scipy.linalg.lapack.cgeqp3#

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

cgeqp3 的包装器。

参数:
a输入秩为 2 的数组('F'),边界为 (m,n)
返回:
qr秩为 2 的数组('F'),边界为 (m,n),并且具有存储空间
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)