gpt4 book ai didi

python - 定义函数以返回样本协方差

转载 作者:行者123 更新时间:2023-11-28 19:26:01 24 4
gpt4 key购买 nike

<分区>

我有两个向量,我试图在函数中使用它们来仅返回样本协方差。谁能帮我修复我的程序?我是 python 和一般编程的新手。

xv= array([8., 9.5, 7.8, 4.2, -7.7, -5.4, 3.2])
yv= array([8.9, 2.0, 4.8, -4.2, 2.7, -3.4, -5.9])

def cov(x,y):
if (len(x) != len(y)
[Stop]
x.bar = mean(x)
y.bar = mean(y)
N = len(x)
Cov = (sum((x-x.bar)*(y-y.bar))) / (N-1.0)
return(Cov)

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