scipy.linalg.lapack.cgesv#
- scipy.linalg.lapack.cgesv(a, b[, overwrite_a, overwrite_b]) = <fortran function cgesv>#
cgesv
的包装器。- 参数:
- 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