猫史档案馆


【Python作品分享】lllllllll【教程贴】

用户:quuuquuu查看:0 回复:0 评论:0 创建时间:2021-01-27T14:28:19


【作品展示】

center_image

 

【作品介绍】

i

 

【作品源代码】

import numpy as np
import matplotlib.pyplot as plt
import mpl_toolkits.mplot3d

x, y = np.mgrid[-2:2:20j,-2:2:20j]
z=50 * np.sin(x+y)
ax=plt.subplot(111,projection='3d')
ax.plot_surface(x,y,z,rstride=1,cstride=1,cmap=plt.cm.Blues_r)
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_zlabel('z')
plt.show()

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页