本文简要介绍 python 语言中 scipy.linalg.cho_solve
的用法。
用法:
scipy.linalg.cho_solve(c_and_lower, b, overwrite_b=False, check_finite=True)#
给定 A 的 Cholesky 分解,求解线性方程 A x = b。
- (c, lower): 元组,(数组,布尔)
a 的 Cholesky 因式分解,由 cho_factor 给出
- b: 数组
右侧
- overwrite_b: 布尔型,可选
是否覆盖b中的数据(可能会提高性能)
- check_finite: 布尔型,可选
是否检查输入矩阵是否仅包含有限数。禁用可能会提高性能,但如果输入确实包含无穷大或 NaN,则可能会导致问题(崩溃、非终止)。
- x: 数组
系统 A x = b 的解
参数 ::
返回 ::
例子:
>>> import numpy as np >>> from scipy.linalg import cho_factor, cho_solve >>> A = np.array([[9, 3, 1, 5], [3, 7, 5, 1], [1, 5, 9, 2], [5, 1, 2, 6]]) >>> c, low = cho_factor(A) >>> x = cho_solve((c, low), [1, 1, 1, 1]) >>> np.allclose(A @ x - [1, 1, 1, 1], np.zeros(4)) True
相关用法
- Python SciPy linalg.cho_solve_banded用法及代码示例
- Python SciPy linalg.cho_factor用法及代码示例
- Python SciPy linalg.cholesky用法及代码示例
- Python SciPy linalg.cholesky_banded用法及代码示例
- Python SciPy linalg.cdf2rdf用法及代码示例
- Python SciPy linalg.clarkson_woodruff_transform用法及代码示例
- Python SciPy linalg.cosm用法及代码示例
- Python SciPy linalg.convolution_matrix用法及代码示例
- Python SciPy linalg.circulant用法及代码示例
- Python scipy.linalg.cossin用法及代码示例
- Python SciPy linalg.companion用法及代码示例
- Python SciPy linalg.cg用法及代码示例
- Python SciPy linalg.coshm用法及代码示例
- Python SciPy linalg.cgs用法及代码示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代码示例
- Python SciPy linalg.LaplacianNd用法及代码示例
- Python SciPy linalg.solve_circulant用法及代码示例
- Python SciPy linalg.polar用法及代码示例
- Python SciPy linalg.rsf2csf用法及代码示例
- Python SciPy linalg.hessenberg用法及代码示例
- Python SciPy linalg.tril用法及代码示例
- Python SciPy linalg.triu用法及代码示例
- Python SciPy linalg.svd用法及代码示例
- Python SciPy linalg.ishermitian用法及代码示例
- Python SciPy linalg.invhilbert用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.linalg.cho_solve。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。