scipy.linalg.lapack.sgesv#
- scipy.linalg.lapack.sgesv(a, b[, overwrite_a, overwrite_b]) = <fortran function sgesv>#
sgesv
的包装器。- 参数:
- a输入秩为 2 的数组(‘f’),边界为 (n,n)
- b输入秩为 2 的数组(‘f’),边界为 (n,nrhs)
- 返回值:
- lu秩为 2 的数组(‘f’),边界为 (n,n),存储为 a
- piv秩为 1 的数组(‘i’),边界为 (n)
- x秩为 2 的数组(‘f’),边界为 (n,nrhs),存储为 b
- infoint
- 其他参数:
- overwrite_a输入 int,可选
默认值:0
- overwrite_b输入 int,可选
默认值:0