[PYTHON] Zeichnen Sie Dreiecksfunktionen mit Numpy und Matplotlib

Importieren Sie Module, die Formeln einfach verarbeiten, und Module, die in Diagramme konvertiert werden können. </ strong>

import matplotlib.pyplot as plt

Zeichen-, Kosinus- und Tangentenanzeige </ strong>

x = plt.linspace(-np.pi,np.pi) #Festlegen der horizontalen Anzeige des Diagramms


plt.plot(x, np.cos(x), color='r', ls='-', label='cos') #Anzeige des Kosinus
plt.plot(x, np.sin(x), color='b', ls='-', label='sin') #Anzeige des Zeichens
plt.plot(x, np.tan(x), color='c', marker='s', ls='None', label='tan') #Anzeige der Tangente

Geben Sie die vertikale / horizontale Anzeige des Diagramms </ strong> an

plt.xlim(-np.pi, np.pi)


plt.ylim(-1.5, 1.5)```

 <strong> Geben Sie die vertikale / horizontale Anzeige des Diagramms </ strong> an

#### **`plt.axhline(0, ls='-', c='b', lw=0.5)`**

plt.axvline(0, ls='-', c='b', lw=0.5)```

Geben Sie die vertikale / horizontale Anzeige des Diagramms </ strong> an

plt.legend()


plt.xlabel('x')
plt.ylabel('y')
plt.title('Graphs')
plt.show()```

 <h1> Alle 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()

Anzeige </ strong> download-1.png

Recommended Posts