import matplotlib.pyplot as plt Int = [-5 + k*0.1 for k in range(101)] def param_tangente(a): return (2*a,-a**2) plt.axis([-5,5,-6,10]) plt.grid(True) for a in Int: m, p = param_tangente(a) y = [m*x + p for x in Int] plt.plot(Int,y) plt.show()
Nos manuels sont collaboratifs, n'hésitez pas à nous en faire part.
Oups, une coquille
j'ai une idée !