标签: python matplotlib
我正在尝试使用plot_trisurf并使用以下代码进行绘制:
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解决方案。