gpt4 book ai didi

python - python中函数的均方根

转载 作者:太空狗 更新时间:2023-10-30 01:45:48 26 4
gpt4 key购买 nike

我想用 Python 计算函数的均方根。我的函数是一个简单的形式,如 y = f(x)。 x 和 y 是数组。

我试过了 Numpy and Scipy Docs却找不到任何东西。

最佳答案

我假设您想计算以下伪代码给出的表达式:

ms = 0
for i = 1 ... N
ms = ms + y[i]^2
ms = ms / N
rms = sqrt(ms)

y 元素的平方值的均值的平方根。

在 numpy 中,您可以简单地对 y 进行平方,取其 mean然后是它的 square root如下:

rms = np.sqrt(np.mean(y**2))

所以,例如:

>>> y = np.array([0, 0, 1, 1, 0, 1, 0, 1, 1, 1])  # Six 1's
>>> y.size
10
>>> np.mean(y**2)
0.59999999999999998
>>> np.sqrt(np.mean(y**2))
0.7745966692414834

如果您想问其他问题,请务必澄清您的问题。

关于python - python中函数的均方根,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40963659/

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