scipy.linalg.lapack.sgtsv#

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

sgtsv 的包装器。

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

默认值:0

overwrite_d输入整数,可选

默认值:0

overwrite_du输入整数,可选

默认值:0

overwrite_b输入整数,可选

默认值:0