scipy.linalg.lapack.dgtsv#

scipy.linalg.lapack.dgtsv(dl, d, du, b[, overwrite_dl, overwrite_d, overwrite_du, overwrite_b]) = <fortran function dgtsv>#

dgtsv 的包装器。

参数:
dl输入秩为 1 的数组(‘d’),边界为 (-1 + n)
d输入秩为 1 的数组(‘d’),边界为 (n)
du输入秩为 1 的数组(‘d’),边界为 (-1 + n)
b输入秩为 2 的数组(‘d’),边界为 (n,nrhs)
返回:
du2秩为 1 的数组(‘d’),边界为 (-1 + n) 并存储在 dl 中
d秩为 1 的数组(‘d’),边界为 (n)
du秩为 1 的数组(‘d’),边界为 (-1 + n)
x秩为 2 的数组(‘d’),边界为 (n,nrhs) 并存储在 b 中
infoint
其他参数:
overwrite_dl输入 int,可选

默认值:0

overwrite_d输入 int,可选

默认值:0

overwrite_du输入 int,可选

默认值:0

overwrite_b输入 int,可选

默认值:0