Python / jupyter:当我尝试关闭mac上的数字时,matplotlib会冻结

时间:2016-11-29 04:46:02

标签: python anaconda jupyter-notebook jupyter

我最近在我的mac上安装了jupyter / anaconda。一切都在工作,除非我试图制作一个数字:

enter image description here

当我试图关闭这个数字时,一切都冻结了。当我用Google搜索它时,它似乎已经有一段时间了。但是,我没有找到解决方案,我非常感谢找到一个解决方案。谢谢!

编辑(现在的工作代码):

%matplotlib
from matplotlib.pylab import *
rcParams['savefig.dpi'] = 300

def f(t):
    return t**2*exp(-t**2)

t = linspace(0,3,31)
y = zeros(len(t))
y = f(t)

plot(t,y)
show()

0 个答案:

没有答案