本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。