Python:改变轴长度

时间:2016-06-21 14:28:09

标签: python matplotlib

plot of electric field plot of electron phase space distribution

我是Python的新手,我有这个脚本来生成附加的图,

fig = plt.figure(figsize=(9,3.0))
ax = fig.add_subplot(111)
mul = 1e-2 * m0 * c * wpe / q0
im = ax.pcolormesh(X,Y,dat.Electric_Field_Ex.data[sx,sy]/mul)
plt.yticks(np.arange(np.min(Y), np.max(Y)+1, 2.0))
plt.xlabel("X-Position")
plt.ylabel("Y-Position")

divider = make_axes_locatable(ax)
cax = divider.append_axes("right", size="5%", pad=0.2)
cbar = plt.colorbar(im, cax=cax)
cbar.set_ticks(np.arange(-1, 4, 1))
ax.set_xlim([-x0,x0])
[enter image description here][1]plt.savefig('ex.png',dpi=300,bbox_inches='tight')

我想让x轴更长,例如从-5到5?我该怎么做?

非常感谢任何帮助......谢谢

1 个答案:

答案 0 :(得分:4)

只需将xlim设置为-5到5:

config.inc.php