Erste Seite Zurück Weiter Letzte Seite Übersicht Bilder

Darstellen von Fuktionen

x=np.linspace(0.,10, 200)

y=np.sin(np.pi*x)/x

plt.plot(x,y,label='example function')

plt.legend()

plt.show()

i.w. das Ergebnis dieses

kurzen Programms:

siehe simplePlot.py

Darstellung einer

Funktion