| Current Path : /opt/alt/python37/share/doc/alt-python37-Cython/Demos/ |
| Current File : //opt/alt/python37/share/doc/alt-python37-Cython/Demos/integrate0.py |
def f(x):
return x**2-x
def integrate_f(a, b, N):
s = 0.0
dx = (b-a)/N
for i in range(N):
s += f(a+i*dx)
return s * dx