Les détails sont les suivants :
Comment dessiner la fonction par morceaux comme indiqué dans l'image ci-dessus en Python ?
import matplotlib.pyplot as plt import numpy as np def f(x): if x <= -1: return -0.5 - x if -1 < x <= 1: return 0.5 * (x ** 2) else: return x - 0.5 x = np.linspace(-3, 3) y = [] for i in x: y_1 = f(i) y.append(y_1) plt.plot(x, y) plt.grid() plt.show()
Changeons l'exemple :
import matplotlib.pyplot as plt import numpy as np def f(x): if x <= -1: return 1 if -1 < x <= 1: return 0.5 * (x ** 2) else: return 1 x = np.linspace(-3, 3) y = [] for i in x: y_1 = f(i) y.append(y_1) y_2 = x ** 2 plt.plot(x, y) plt.grid() plt.show()
Le résultat s'affiche comme :
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!