本文简要介绍 python 语言中 scipy.stats.Covariance.from_cholesky
的用法。
用法:
static Covariance.from_cholesky(cholesky)#
通过(较低)Cholesky 因子提供的协方差表示
- cholesky: array_like
协方差矩阵的下三角 Cholesky 因子。
参数 ::
注意:
令协方差矩阵 为较低的 Cholesky 因子,使得 。数据点 的白化是通过计算 来执行的。 计算为 ,其中 操作按元素执行。
此
Covariance
类不支持奇异协方差矩阵,因为奇异协方差矩阵不存在 Cholesky 分解。例子:
准备对称正定协方差矩阵
A
和数据点x
。>>> import numpy as np >>> from scipy import stats >>> rng = np.random.default_rng() >>> n = 5 >>> A = rng.random(size=(n, n)) >>> A = A @ A.T # make the covariance symmetric positive definite >>> x = rng.random(size=n)
对
A
执行 Cholesky 分解并创建Covariance
对象。>>> L = np.linalg.cholesky(A) >>> cov = stats.Covariance.from_cholesky(L)
将
Covariance
对象的函数与参考实现进行比较。>>> from scipy.linalg import solve_triangular >>> res = cov.whiten(x) >>> ref = solve_triangular(L, x, lower=True) >>> np.allclose(res, ref) True >>> res = cov.log_pdet >>> ref = np.linalg.slogdet(A)[-1] >>> np.allclose(res, ref) True
相关用法
- Python SciPy Covariance.from_precision用法及代码示例
- Python SciPy Covariance.from_eigendecomposition用法及代码示例
- Python SciPy Covariance.from_diagonal用法及代码示例
- Python SciPy Covariance.whiten用法及代码示例
- Python SciPy Covariance.colorize用法及代码示例
- Python SciPy ClusterNode.pre_order用法及代码示例
- Python SciPy CensoredData.interval_censored用法及代码示例
- Python SciPy CensoredData.right_censored用法及代码示例
- Python SciPy CubicSpline.solve用法及代码示例
- Python SciPy CensoredData.left_censored用法及代码示例
- Python SciPy CubicHermiteSpline.solve用法及代码示例
- Python SciPy interpolate.make_interp_spline用法及代码示例
- Python SciPy stats.anderson用法及代码示例
- Python SciPy stats.iqr用法及代码示例
- Python SciPy FortranFile.read_record用法及代码示例
- Python SciPy ndimage.correlate用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy signal.czt_points用法及代码示例
- Python SciPy interpolate.krogh_interpolate用法及代码示例
- Python SciPy ndimage.morphological_gradient用法及代码示例
- Python SciPy distance.sokalmichener用法及代码示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代码示例
- Python SciPy linalg.cdf2rdf用法及代码示例
- Python SciPy csc_array.diagonal用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.stats.Covariance.from_cholesky。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。