Spyder和WinPython绘制问题

时间:2014-02-19 20:59:48

标签: python plot spyder

我是一个Python新手/ Matlab-convert,使用WinPython [1]在Spyder2.3.0beta2控制台中工作。当我使用运行文件(F5)按钮绘制下面显示的代码[2]时,第一次启动Sypder后,它可靠地生成一个未带到显示器前面的绘图。第二次,代码可靠地“挂起”在控制台[3]中,直到我点击返回一次,之后生成图形但没有带到显示器的前面。第三次及以后,代码似乎没有在控制台中“挂起”,但是在我点击返回之前没有产生情节...然后产生了一个数字但没有带到显示器的前面。

我的问题还是WinPython的?

参考文献: [1] 启动产生:

Python 3.3.3 (v3.3.3:c3896275c0f6, Nov 18 2013, 21:19:30) [MSC v.1600 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.

Imported NumPy 1.8.0, SciPy 0.13.2, SciPy.linalg 0.4.9, Matplotlib 1.3.1
+ guidata 1.6.1, guiqwt 2.3.2
Type "scientific" for more details.

[2]

close('all')
t = linspace(0, 3, 51)      # 51 points between 0 and 3
y = t**2*exp(-t**2)
plot(t, y)
xlabel('t')
ylabel('y')
legend(['t^2*exp(-t^2)'])
axis([0, 3, -0.05, 0.6]) # [tmin, tmax, ymin, ymax]
title('My First Matplotlib Demo')
show()

[3]显示在控制台中:

>>> runfile('C:/Users/cwilly/Desktop/Python/test_text_file.py', wdir=r'C:/Users/cwilly/Desktop/Python')

[4]显示在控制台中:

>>> runfile('C:/Users/cwilly/Desktop/Python/test_text_file.py', wdir=r'C:/Users/cwilly/Desktop/Python')
>>> 

0 个答案:

没有答案