Create gaussian1.py

This commit is contained in:
Daniel Løvbrøtte Olsen 2017-08-30 01:38:21 +02:00 committed by GitHub
parent bbd7b4bec8
commit 8e89de9a0e

View File

@ -0,0 +1,8 @@
import math
def f(m, s, x):
fraction = 1/(math.sqrt(2*math.pi)*s)
brackets = -(1.0/2.0)*((x-m)/s)**2
return fraction*math.exp(brackets)
print f(0.0, 2.0, 1.0)