def plot(self):
x=np.linspace(-1,1,self.L)
y=np.linspace(-1,1,self.L)
X,Y=np.meshgrid(x,y)
fig=plt.figure()
ax=Axes3D(fig)
ax.plot_surface(X, Y, self.V, rstride=5, cstride=5, cmap='hot')
Exercise13_2.py 文件源码
python
阅读 19
收藏 0
点赞 0
评论 0
评论列表
文章目录