diff --git a/misc/challenges/gaussian1.py b/misc/challenges/gaussian1.py new file mode 100644 index 0000000..72ffc59 --- /dev/null +++ b/misc/challenges/gaussian1.py @@ -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)