Importez des modules qui gèrent facilement les formules et des modules qui peuvent être convertis en graphiques. </ strong>
import matplotlib.pyplot as plt
Affichage du signe, du cosinus, de la tangente </ strong>
x = plt.linspace(-np.pi,np.pi) #Spécifier l'affichage horizontal du graphique
plt.plot(x, np.cos(x), color='r', ls='-', label='cos') #Affichage du cosinus
plt.plot(x, np.sin(x), color='b', ls='-', label='sin') #Affichage du signe
plt.plot(x, np.tan(x), color='c', marker='s', ls='None', label='tan') #Affichage de la tangente
Spécifier l'affichage vertical / horizontal du graphique </ strong>
plt.xlim(-np.pi, np.pi)
plt.ylim(-1.5, 1.5)```
<strong> Spécifier l'affichage vertical / horizontal du graphique </ strong>
#### **`plt.axhline(0, ls='-', c='b', lw=0.5)`**
plt.axvline(0, ls='-', c='b', lw=0.5)```
Spécifier l'affichage vertical / horizontal du graphique </ strong>
plt.legend()
plt.xlabel('x')
plt.ylabel('y')
plt.title('Graphs')
plt.show()```
<h1> Tous les codes </ h1>
#### **`Main.py`**
```py
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-np.pi, np.pi)
plt.plot(x, np.cos(x), color='r', ls='-', label='cos')
plt.plot(x, np.sin(x), color='b', ls='-', label='sin')
plt.plot(x, np.tan(x), color='c', marker='s', ls='None', label='tan')
plt.xlim(-np.pi, np.pi)
plt.ylim(-1.5, 1.5)
plt.axhline(0, ls='-', c='b', lw=0.5)
plt.axvline(0, ls='-', c='b', lw=0.5)
plt.legend()
plt.xlabel('x')
plt.ylabel('y')
plt.title('Graphs')
plt.show()
Display </ strong>
Recommended Posts