summaryrefslogtreecommitdiff
path: root/docs/examples/quickstart/cythonize/integrate.py
blob: 80d6d13a79f24c97e862db74931bdad13531110d (plain)
1
2
3
4
5
6
7
8
9
10
def f(x):
    return x ** 2 - x


def integrate_f(a, b, N):
    s = 0
    dx = (b - a) / N
    for i in range(N):
        s += f(a + i * dx)
    return s * dx