在Python中计算两个分布的协方差矩阵

时间:2012-01-08 16:52:15

标签: python statistics standard-deviation deviation

我想计算两个分布的协方差矩阵,在python中计算它们的可能方法是什么?

1 个答案:

答案 0 :(得分:6)

您应该使用numpy

>>> from numpy import cov
>>> cov([1, 2, 3], [2, 12, 14])
array([[  1.        ,   6.        ],
       [  6.        ,  41.33333333]])