欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python绘制三维图形

程序员文章站 2022-07-14 09:47:01
...

需要安装numpy和matplotlib库,我都是pip库安装,这样比较简单。

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 = 2, cstride = 1, cmap = plt.cm.Blues_r)
ax.set_xlabel('x')                         # 设置坐标轴标签
ax.set_xlabel('y')
ax.set_xlabel('z')
plt.show()

这是最终效果

Python绘制三维图形

参考自《Python可以这样学》414页