日志轴#

这是使用 为 x 轴分配对数刻度的示例 semilogx

semilogx 演示
import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots()

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

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

plt.show()

由 Sphinx-Gallery 生成的画廊