1 つの図に 2 つの plot_wireframe を描画します。私はmatplotlibが初めてです.チュートリアルを読みましたが、まだいくつかの問題があります。
(1) 図の線の色を変更して凡例を追加するにはどうすればよいですか?
fig = plt.figure()
ax = fig.add_subplot(111,projection='3d')
ax.plot_wireframe(x,y,z1)
ax.legend("View window") # not correct.
ax.plot_wireframe(x,y,z2)
ax.legend("High window")
plt.show()
(2) もう 1 つの問題は、マウス (Win 7 の場合) を使用して Figure を回転すると、ウィンドウのサイズを変更するまで更新されないように見えることです。