我跑不matplotlib
下去了python 2.7
。例如:
from pylab import *
x = arange(-10.0, 10.0, 0.1)
y = sin(x)
plot(x,y)
能够运行。
但
from pylab import *
x = arange(-10.0, 10.0, 0.1)
y = sin(x)
plot(x,y)
show()
不是。该show()
函数无法运行。
有任何想法吗?
我跑不matplotlib
下去了python 2.7
。例如:
from pylab import *
x = arange(-10.0, 10.0, 0.1)
y = sin(x)
plot(x,y)
能够运行。
但
from pylab import *
x = arange(-10.0, 10.0, 0.1)
y = sin(x)
plot(x,y)
show()
不是。该show()
函数无法运行。
有任何想法吗?