Wie sah diese Grafik aus? Zu diesem Zeitpunkt möchte ich es leicht schreiben und überprüfen (es ist mir also egal, ob eine Warnung angezeigt wird).
Log import numpy as np import matplotlib.pyplot as plt
x = np.arange(0, 10, 0.01) y = np.log(x)
plt.grid() plt.plot(x,y) plt.show()
Recommended Posts