diff --git a/Maths/TrapezoidalRule.py b/Maths/TrapezoidalRule.py index f926ed256..2ad857390 100644 --- a/Maths/TrapezoidalRule.py +++ b/Maths/TrapezoidalRule.py @@ -29,7 +29,7 @@ def makePoints(a,b,h): yield x x = x + h -def f(x): +def f(x): #enter your function here y = (x-0)*(x-0) return y