本文简要介绍 python 语言中scipy.linalg.interpolative.reconstruct_interp_matrix
的用法。
用法:
scipy.linalg.interpolative.reconstruct_interp_matrix(idx, proj)#
从 ID 重建插值矩阵。
插值矩阵可以分别从 ID 索引和系数 idx 和 proj 重构为:
P = numpy.hstack([numpy.eye(proj.shape[0]), proj])[:,numpy.argsort(idx)]
然后可以通过以下方式从其骨架矩阵 B 重建原始矩阵:
numpy.dot(B, P)
另请参见
reconstruct_matrix_from_id
和reconstruct_skel_matrix
。- idx: numpy.ndarray
列索引数组。
- proj: numpy.ndarray
插值系数。
- numpy.ndarray
插值矩阵。
参数 ::
返回 ::
相关用法
- Python SciPy interpolative.reconstruct_matrix_from_id用法及代码示例
- Python SciPy interpolative.reconstruct_skel_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_interp_matrix。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。