You are reading an old version of the documentation (v2.0.2). For the latest version see https://matplotlib.org/stable/
matplotlib

Travis-CI:

This Page

pylab_examples example code: log_test.pyΒΆ

(Source code, png, pdf)

../../_images/log_test.png
import matplotlib.pyplot as plt
import numpy as np

dt = 0.01
t = np.arange(dt, 20.0, dt)

plt.semilogx(t, np.exp(-t/5.0))
plt.grid(True)

plt.show()

Keywords: python, matplotlib, pylab, example, codex (see Search examples)