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