本文简要介绍 python 语言中 scipy.linalg.hessenberg
的用法。
用法:
scipy.linalg.hessenberg(a, calc_q=False, overwrite_a=False, check_finite=True)#
计算矩阵的 Hessenberg 形式。
Hessenberg 分解为:
A = Q H Q^H
其中 Q 是酉/正交的,H 在第一个 sub-diagonal 之下只有零个元素。
- a: (M, M) 数组
矩阵带入 Hessenberg 形式。
- calc_q: 布尔型,可选
是否计算变换矩阵。默认为假。
- overwrite_a: 布尔型,可选
是否覆盖a;可以提高性能。默认为假。
- check_finite: 布尔型,可选
是否检查输入矩阵是否仅包含有限数。禁用可能会提高性能,但如果输入确实包含无穷大或 NaN,则可能会导致问题(崩溃、非终止)。
- H: (M, M) ndarray
a. Hessenberg 形式
- Q: (M, M) ndarray
酉/正交相似变换矩阵
A = Q H Q^H
。仅在calc_q=True
时返回。
参数 ::
返回 ::
例子:
>>> import numpy as np >>> from scipy.linalg import hessenberg >>> A = np.array([[2, 5, 8, 7], [5, 2, 2, 8], [7, 5, 6, 6], [5, 4, 4, 8]]) >>> H, Q = hessenberg(A, calc_q=True) >>> H array([[ 2. , -11.65843866, 1.42005301, 0.25349066], [ -9.94987437, 14.53535354, -5.31022304, 2.43081618], [ 0. , -1.83299243, 0.38969961, -0.51527034], [ 0. , 0. , -3.83189513, 1.07494686]]) >>> np.allclose(Q @ H @ Q.conj().T - A, np.zeros((4, 4))) True
相关用法
- Python SciPy linalg.helmert用法及代码示例
- Python SciPy linalg.hilbert用法及代码示例
- Python SciPy linalg.hankel用法及代码示例
- Python SciPy linalg.hadamard用法及代码示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代码示例
- Python SciPy linalg.cdf2rdf用法及代码示例
- Python SciPy linalg.LaplacianNd用法及代码示例
- Python SciPy linalg.solve_circulant用法及代码示例
- Python SciPy linalg.polar用法及代码示例
- Python SciPy linalg.clarkson_woodruff_transform用法及代码示例
- Python SciPy linalg.rsf2csf用法及代码示例
- Python SciPy linalg.tril用法及代码示例
- Python SciPy linalg.triu用法及代码示例
- Python SciPy linalg.svd用法及代码示例
- Python SciPy linalg.ishermitian用法及代码示例
- Python SciPy linalg.invhilbert用法及代码示例
- Python SciPy linalg.factorized用法及代码示例
- Python SciPy linalg.lu_factor用法及代码示例
- Python SciPy linalg.SuperLU用法及代码示例
- Python SciPy linalg.lsqr用法及代码示例
- Python SciPy linalg.cho_factor用法及代码示例
- Python SciPy linalg.fractional_matrix_power用法及代码示例
- Python SciPy linalg.eig_banded用法及代码示例
- Python SciPy linalg.tanhm用法及代码示例
- Python SciPy linalg.orthogonal_procrustes用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.linalg.hessenberg。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。