Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 3(1D)个数组,所以据我所知,我唯一可以使用的是 TRISURF 来绘制一个表面。但我不知道如何在表面上放置一个网格,就像这个情节
这是我遇到问题的代码的一部分:
fig = plt.figure() ax = Axes3D(fig) surf = ax.plot_trisurf(x, y, z,cmap=plt.cm.get_cmap('jet',256), linewidth=0.5, antialiased=True)
非常感谢。