matplotlib.pyplot.fill_between(x, y1, y2=0, where=None, interpolate=False, step=None, hold=None, data=None, **kwargs)
Create a PolyCollection filling the regions between y1 and y2 where where==True
意思就是只有当where部分为真实将y1,y2之间的部分填充上色
在这节课里就是当c>0.5时,填充c与(np.abs(x)<0.5)之间的部分
Create a PolyCollection filling the regions between y1 and y2 where where==True
意思就是只有当where部分为真实将y1,y2之间的部分填充上色
在这节课里就是当c>0.5时,填充c与(np.abs(x)<0.5)之间的部分
2017-07-19
Tensorflow、theano官网都明确说明暂不支持python3.6,建议使用Anaconda创建python3.5环境来测试。
2017-07-19
最新回答 / Yuk
apt-get错误的原因是你用anaconda的python替换了系统的python,建议不把anaconda python的环境变量加到PATH中,或者在使用anaconda的时候临时source 一下环境变量
2017-07-18