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