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