scipy.linalg.lapack.cgesvx#
- scipy.linalg.lapack.cgesvx(a, b[, fact, trans, af, ipiv, equed, r, c, overwrite_a, overwrite_b]) = <fortran function cgesvx>#
cgesvx
的包装器。- 参数:
- a输入秩为 2 的数组(‘F’),边界为 (n,n)
- b输入秩为 2 的数组(‘F’),边界为 (n,nrhs)
- 返回:
- as秩为 2 的数组(‘F’),边界为 (n,n) 并带有存储
- lu秩为 2 的数组(‘F’),边界为 (n,n) 并带有 af 存储
- ipiv秩为 1 的数组(‘i’),边界为 (n)
- equed字节
- rs秩为 1 的数组(‘f’),边界为 (n) 并带有 r 存储
- cs秩为 1 的数组(‘f’),边界为 (n) 并带有 c 存储
- bs秩为 2 的数组(‘F’),边界为 (n,nrhs) 并带有 b 存储
- x秩为 2 的数组(‘F’),边界为 (n,nrhs)
- rcond浮点数
- ferr秩为 1 的数组(‘f’),边界为 (nrhs)
- berr秩为 1 的数组(‘f’),边界为 (nrhs)
- info整数
- 其他参数:
- fact输入字节,可选
默认值: ‘E’
- trans输入字节,可选
默认值: ‘N’
- overwrite_a输入整数,可选
默认值: 0
- af输入秩为 2 的数组(‘F’),边界为 (n,n)
- ipiv输入秩为 1 的数组(‘i’),边界为 (n)
- equed输入字节,可选
默认值: ‘B’
- r输入秩为 1 的数组(‘f’),边界为 (n)
- c输入秩为 1 的数组(‘f’),边界为 (n)
- overwrite_b输入整数,可选
默认值: 0