python 三维线段 作图
时间: 2023-10-13 11:23:11 浏览: 100
制作三维数据分段专题图
可以使用 Matplotlib 的 mplot3d 模块来绘制三维线段。
下面是一个示例代码,使用 mplot3d 模块绘制三维线段:
```python
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# 绘制三维线段
x = [1, 2, 3]
y = [4, 5, 6]
z = [7, 8, 9]
ax.plot(x, y, z)
plt.show()
```
运行上面的代码,将会绘制一条从 (1, 4, 7) 到 (3, 6, 9) 的三维线段。你可以根据自己的需要修改 x、y、z 坐标列表,绘制任意的三维线段。
阅读全文