如何在python中为一个情节设置xlim?

时间:2014-04-07 07:33:39

标签: python python-2.7 numpy matplotlib

为什么“xlim”在以下脚本中不起作用:

from pylab import *
from numpy import *

x = linspace (0, 2*pi, 100)
y = sin (x)
clf ()
plot (x, y, 'b-', label = "sin (x)")
xlim (0, 2*pi)
axis ('equal')
grid ()
legend ()
show ()

1 个答案:

答案 0 :(得分:0)

如果省略axis('equal')宽高比的使用,x值的限制对我有用。可能这对于不同的Matplotlib后端是不同的。我正在使用Mac Os X默认后端。