gpt4 book ai didi

python - Var(x) 和 cov(x, x) 在 numpy 中给出的结果不同

转载 作者:IT老高 更新时间:2023-10-28 21:00:11 25 4
gpt4 key购买 nike

协方差的一个性质是,cov(x, x) = var(x)

但是,在 numpy 中我没有得到相同的结果。

from numpy import var, cov

x = range(10)
y = var(x)
z = cov(x, x)[0][1]
print y, z

我在这里做错了吗?怎样才能得到正确的结果?

最佳答案

您必须使用 z=cov(x,bias=1) 才能通过 N 进行归一化,因为 var 也是 N 的规范(根据 this

关于python - Var(x) 和 cov(x, x) 在 numpy 中给出的结果不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8506325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com