scipy.linalg.lapack.cposvx#
- scipy.linalg.lapack.cposvx(a, b[, fact, af, equed, s, lower, overwrite_a, overwrite_b]) = <fortran function cposvx>#
用于
cposvx
的包装器。- 参数::
- a输入秩为 2 的数组(‘F’),边界为 (n,n)
- b输入秩为 2 的数组(‘F’),边界为 (n,nrhs)
- 返回值::
- a_s秩为 2 的数组(‘F’),边界为 (n,n),存储空间为 a
- lu秩为 2 的数组(‘F’),边界为 (n,n),存储空间为 af
- equed字节
- s秩为 1 的数组(‘f’),边界为 (n)
- b_s秩为 2 的数组(‘F’),边界为 (n,nrhs),存储空间为 b
- x秩为 2 的数组(‘F’),边界为 (n,nrhs)
- rcond浮点数
- ferr秩为 1 的数组(‘f’),边界为 (nrhs)
- berr秩为 1 的数组(‘f’),边界为 (nrhs)
- info整数
- 其他参数::
- fact输入字节,可选
默认值:‘E’
- overwrite_a输入整数,可选
默认值:0
- af输入秩为 2 的数组(‘F’),边界为 (n,n)
- equed输入字节,可选
默认值:‘Y’
- s输入秩为 1 的数组(‘f’),边界为 (n)
- overwrite_b输入整数,可选
默认值:0
- lower输入整数,可选
默认值:0