Python 2.7中的高斯函数

时间:2016-09-30 05:31:40

标签: python python-2.7

我需要帮助制作一个程序,用于在f(x)=1/(sqrt(2*pi)s)*exp[-.5*((x-m)/s)**2]m=0s=2时计算高斯函数x=1

只是:

def Gaussian(m,s,x):
    return 1/(sqrt(2*pi)s)*exp[-.5*((x-m)/s)**2]
print Gaussian(0,2,1)

1 个答案:

答案 0 :(得分:0)

我认为您遗失了from math import sqrtfrom math import expfrom math import pi,除非您未在代码中显示。