Je veux utiliser matplotlib pour illustrer l'intégrale définie entre deux régions : x_0, et x_1.
Comment puis-je ombrer une région sous une courbe dans matplotlib de x=-1, à x=1 étant donné le tracé suivant
import numpy as np
from matplotlib import pyplot as plt
def f(t):
return t * t
t = np.arange(-4,4,1/40.)
plt.plot(t,f(t))