Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

matplot lib mehrere bilder nebeneinander

plt.subplot(121)  #sublot(Anzahl Zeilen Anzahl Spalten Bild Nummer)
plt.plot(x, y1)
plt.title('Sinus')
plt.xlim([0,2*np.pi])

plt.subplot(122)
plt.plot(x, y2)
plt.title('Cosinus')
plt.xlim([0,2*np.pi])
Source by www.physi.uni-heidelberg.de #
 
PREVIOUS NEXT
Tagged: #matplot #lib #mehrere #bilder #nebeneinander
ADD COMMENT
Topic
Name
3+9 =