如何在python中绘制semilog图?

时间:2017-04-16 07:44:12

标签: python matplotlib plot

如何在python中绘制semilog图?日志中的X轴和线性的y轴。目前我在plooting阶段vs omega,我需要y轴线性,而x轴在log。哇,我可以在python中做到吗?

1 个答案:

答案 0 :(得分:6)

使用semilogx,如文档here

所示

一个简单的例子:

import matplotlib.pyplot as plt
plt.semilogx([1, 10, 100], [1, 10, 100])
plt.xlabel("Omega")
plt.ylabel("phase")
plt.show()

enter image description here