scipy.linalg.lapack.sgtsvx#

scipy.linalg.lapack.sgtsvx(dl, d, du, b[, fact, trans, dlf, df, duf, du2, ipiv]) = <fortran function sgtsvx>#

sgtsvx 的包装器。

参数:
dl输入秩为 1 的数组(‘f’),边界为 (MAX(0, -1 + n))
d输入秩为 1 的数组(‘f’),边界为 (n)
du输入秩为 1 的数组(‘f’),边界为 (MAX(0, -1 + n))
b输入秩为 2 的数组(‘f’),边界为 (ldb,nrhs)
返回:
dlf秩为 1 的数组(‘f’),边界为 (MAX(0, -1 + n))
df秩为 1 的数组(‘f’),边界为 (n)
duf秩为 1 的数组(‘f’),边界为 (MAX(0, -1 + n))
du2秩为 1 的数组(‘f’),边界为 (MAX(0, -2 + n))
ipiv秩为 1 的数组(‘i’),边界为 (n)
x秩为 2 的数组(‘f’),边界为 (ldx,nrhs)
rcond浮点数
ferr秩为 1 的数组(‘f’),边界为 (nrhs)
berr秩为 1 的数组(‘f’),边界为 (nrhs)
info整数
其他参数:
fact输入字节,可选

默认值: ‘N’

trans输入字节,可选

默认值: ‘N’

dlf输入秩为 1 的数组(‘f’),边界为 (MAX(0, -1 + n))
df输入秩为 1 的数组(‘f’),边界为 (n)
duf输入秩为 1 的数组(‘f’),边界为 (MAX(0, -1 + n))
du2输入秩为 1 的数组(‘f’),边界为 (MAX(0, -2 + n))
ipiv输入秩为 1 的数组(‘i’),边界为 (n)