scipy.linalg.lapack.cptsvx#

scipy.linalg.lapack.cptsvx(d, e, b[, fact, df, ef]) = <fortran function cptsvx>#

cptsvx 的包装器。

参数:
d输入秩为 1 的数组(‘f’),边界为 (n)
e输入秩为 1 的数组(‘F’),边界为 (max(0, -1 + n))
b输入秩为 2 的数组(‘F’),边界为 (ldb,nrhs)
返回:
df秩为 1 的数组(‘f’),边界为 (n)
ef秩为 1 的数组(‘F’),边界为 (max(0, -1 + n))
x秩为 2 的数组(‘F’),边界为 (ldx,nrhs)
rcond浮点数
ferr秩为 1 的数组(‘f’),边界为 (nrhs)
berr秩为 1 的数组(‘f’),边界为 (nrhs)
info整数
其他参数:
fact输入字节,可选

默认值: ‘N’

df输入秩为 1 的数组(‘f’),边界为 (n)
ef输入秩为 1 的数组(‘F’),边界为 (max(0, -1 + n))