使用python绘制3D曲面:raise ValueError(“参数Z必须为二维。”)matplotlib

时间:2018-07-28 20:05:28

标签: python matplotlib

我试图绘制3d曲面穿过一组(X,Y,Z)3d点,然后引发ValueError(“ Argument Z必须是二维的。”)matplotlib

points = Tail_geo(D,L) # is a list from a function 
points = points + Nose_geo(D,L)# is a list from both function s
X = [x[0] for x in points]# seperate X from the list
Y = [x[1] for x in points]
Z = [x[2] for x in points]
X = np.asarray(X)
Y = np.asarray(Y)
Z = np.asarray(Z)
fig = plt.figure()
ax = fig.gca(projection='3d')
surf = ax.plot_surface(X, Y, Z, linewidth=0, antialiased=False)
plt . show ( )

1 个答案:

答案 0 :(得分:1)

函数plot_surface希望将其输入构造为常规2D网格。对于您的数据(作为列表的x,y,z),使用plot_trisurf函数可能更合适。只需在您的代码中进行简单的替换即可。

surf = ax.plot_trisurf(X, Y, Z, linewidth=0, antialiased=False)

https://matplotlib.org/examples/mplot3d/trisurf3d_demo.html的matplotlib画廊中有一个很好的例子,您可以查看一下更多详细信息。