gpt4 book ai didi

python - 没有 SciPy 的 PDF 和 CDF

转载 作者:太空宇宙 更新时间:2023-11-04 08:18:16 25 4
gpt4 key购买 nike

我需要在我编写的 Python 应用程序中使用概率和累积密度函数。 SciPy 提供了这两种功能,但它似乎对这两个功能的依赖性太高了。 PDF 似乎很容易在没有 SciPy 的情况下实现。 ( From the docs: )

The probability density function for norm is:

norm.pdf(x) = exp(-x**2/2)/sqrt(2*pi)

有没有办法在使用 SciPy 的情况下也获取 CDF?

最佳答案

参见 this post :

from math import *
def erfcc(x):
"""Complementary error function."""
z = abs(x)
t = 1. / (1. + 0.5*z)
r = t * exp(-z*z-1.26551223+t*(1.00002368+t*(.37409196+
t*(.09678418+t*(-.18628806+t*(.27886807+
t*(-1.13520398+t*(1.48851587+t*(-.82215223+
t*.17087277)))))))))
if (x >= 0.):
return r
else:
return 2. - r

def ncdf(x):
return 1. - 0.5*erfcc(x/(2**0.5))

关于python - 没有 SciPy 的 PDF 和 CDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10302568/

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