如何使用Matplotlib制作简单的3D线?

问题描述 投票:20回答:2

我想生成线条,这是我从3D中的数组中获得的。

这是代码:

VecStart_x = [0,1,3,5]
VecStart_y = [2,2,5,5]
VecStart_z = [0,1,1,5]
VecEnd_x = [1,2,-1,6]
VecEnd_y = [3,1,-2,7]
VecEnd_z  =[1,0,4,9]

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

ax.plot([VecStart_x ,VecEnd_x],[VecStart_y,VecEnd_y],[VecStart_z,VecEnd_z])
plt.show()
Axes3D.plot()

我收到了这个错误:

ValueError:第三个arg必须是格式字符串

python matplotlib
2个回答
21
投票

我想,你想绘制4条线。然后你可以试试

for i in range(4):
    ax.plot([VecStart_x[i], VecEnd_x[i]], [VecStart_y[i],VecEnd_y[i]],zs=[VecStart_z[i],VecEnd_z[i]])

正如@Nicolas建议的那样,看看matplotlib画廊。


6
投票

该画廊是一个很好的起点,可以找到例子:

http://matplotlib.org/gallery.html

这里有一个3d线图的例子:

http://matplotlib.org/examples/mplot3d/lines3d_demo.html

你看到你需要传递给ax.plot函数3向量。您实际上正在传递列表列表。我不知道您的开始和结束子列表的含义,但以下行应该有效:

ax.plot(VecStart_x + VecEnd_x, VecStart_y + VecEnd_y, VecStart_z +VecEnd_z)

在这里,我总结子列表(串联),以便按轴只有一个列表。

© www.soinside.com 2019 - 2024. All rights reserved.