本文簡要介紹 python 語言中 scipy.linalg.interpolative.reconstruct_skel_matrix
的用法。
用法:
scipy.linalg.interpolative.reconstruct_skel_matrix(A, k, idx)#
從 ID 重建骨架矩陣。
骨架矩陣可以從原始矩陣 A 及其 ID rank 和索引 k 和 idx 分別重構為:
B = A[:,idx[:k]]
然後可以通過以下方式重建原始矩陣:
numpy.hstack([B, numpy.dot(B, proj)])[:,numpy.argsort(idx)]
另請參見
reconstruct_matrix_from_id
和reconstruct_interp_matrix
。- A: numpy.ndarray
原始矩陣。
- k: int
身份等級。
- idx: numpy.ndarray
列索引數組。
- numpy.ndarray
骨架矩陣。
參數 ::
返回 ::
相關用法
- Python SciPy interpolative.reconstruct_matrix_from_id用法及代碼示例
- Python SciPy interpolative.reconstruct_interp_matrix用法及代碼示例
- Python SciPy interpolative.id_to_svd用法及代碼示例
- Python SciPy interpolative.svd用法及代碼示例
- Python SciPy interpolative.interp_decomp用法及代碼示例
- Python SciPy interpolate.make_interp_spline用法及代碼示例
- Python SciPy interpolate.krogh_interpolate用法及代碼示例
- Python SciPy interpolate.InterpolatedUnivariateSpline用法及代碼示例
- Python SciPy interpolate.BSpline用法及代碼示例
- Python SciPy interpolate.LSQSphereBivariateSpline用法及代碼示例
- Python SciPy interpolate.griddata用法及代碼示例
- Python SciPy interpolate.splder用法及代碼示例
- Python SciPy interpolate.LinearNDInterpolator用法及代碼示例
- Python SciPy interpolate.PPoly用法及代碼示例
- Python SciPy interpolate.NdBSpline用法及代碼示例
- Python SciPy interpolate.pade用法及代碼示例
- Python SciPy interpolate.barycentric_interpolate用法及代碼示例
- Python SciPy interpolate.RegularGridInterpolator用法及代碼示例
- Python SciPy interpolate.NdPPoly用法及代碼示例
- Python SciPy interpolate.interp2d用法及代碼示例
- Python SciPy interpolate.approximate_taylor_polynomial用法及代碼示例
- Python SciPy interpolate.RectSphereBivariateSpline用法及代碼示例
- Python SciPy interpolate.sproot用法及代碼示例
- Python SciPy interpolate.splantider用法及代碼示例
- Python SciPy interpolate.CloughTocher2DInterpolator用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.linalg.interpolative.reconstruct_skel_matrix。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。