使用matplotlib的3D图的两个Z轴

时间:2018-11-01 13:28:41

标签: python matplotlib

我正在尝试使用plot_trisurf并使用以下代码进行绘制:

fig = plt.figure()
ax = fig.gca(projection='3d')
ax.plot_trisurf(X1,Y1,Z1)
ax.plot_trisurf(X2,Y2,Z2)

Z1和Z2的标度相差几个量级。

如何共享X和Y轴,而不共享Z轴?

在2D中,我具有函数“ twinx()”,但找不到3D解决方案。

0 个答案:

没有答案