scipy.linalg.lapack.cgtsv#
- scipy.linalg.lapack.cgtsv(dl, d, du, b[, overwrite_dl, overwrite_d, overwrite_du, overwrite_b]) = <fortran function cgtsv>#
cgtsv
的包装器。- 参数:
- 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
- infoint
- 其他参数:
- overwrite_dl输入 int,可选
默认值:0
- overwrite_d输入 int,可选
默认值:0
- overwrite_du输入 int,可选
默认值:0
- overwrite_b输入 int,可选
默认值:0