scipy.linalg.lapack.sptsvx#
- scipy.linalg.lapack.sptsvx(d, e, b[, fact, df, ef]) = <fortran function sptsvx>#
sptsvx
的包装器。- 参数:
- 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)
- rcondfloat
- ferr秩为 1 的数组(‘f’),边界为 (nrhs)
- berr秩为 1 的数组(‘f’),边界为 (nrhs)
- infoint
- 其他参数:
- fact输入字节,可选
默认值:‘N’
- df输入秩为 1 的数组(‘f’),边界为 (n)
- ef输入秩为 1 的数组(‘f’),边界为 (max(0, -1 + n))