本文简要介绍 python 语言中 scipy.linalg.interpolative.svd
的用法。
用法:
scipy.linalg.interpolative.svd(A, eps_or_k, rand=True)#
通过 ID 计算矩阵的 SVD。
矩阵 A 的 SVD 是一个因式分解:
A = numpy.dot(U, numpy.dot(numpy.diag(S), V.conj().T))
其中 U 和 V 具有正交列,并且 S 是非负数。
SVD 可以计算为任何相对精度或等级(取决于eps_or_k 的值)。
另请参见
interp_decomp
和id_to_svd
。- A:
numpy.ndarray
或scipy.sparse.linalg.LinearOperator
要因式分解的矩阵,给出为numpy.ndarray或一个scipy.sparse.linalg.LinearOperator与马特韦克和rmatvec方法(应用矩阵及其伴随矩阵)。
- eps_or_k: 浮点数或int
近似的相对误差(如果eps_or_k < 1)或等级(如果eps_or_k >= 1)。
- rand: 布尔型,可选
是否使用随机抽样如果A是类型numpy.ndarray(如果出现以下情况,则始终使用随机算法A是类型scipy.sparse.linalg.LinearOperator)。
- A:
- U: numpy.ndarray
左奇异向量。
- S: numpy.ndarray
奇异值。
- V: numpy.ndarray
右奇异向量。
参数 ::
返回 ::
相关用法
- Python SciPy interpolative.reconstruct_matrix_from_id用法及代码示例
- Python SciPy interpolative.reconstruct_interp_matrix用法及代码示例
- Python SciPy interpolative.id_to_svd用法及代码示例
- Python SciPy interpolative.interp_decomp用法及代码示例
- Python SciPy interpolative.reconstruct_skel_matrix用法及代码示例
- 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.svd。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。