gpt4 book ai didi

python-2.7 - 保存 matplotlib 3d 旋转图

转载 作者:行者123 更新时间:2023-12-04 01:13:34 34 4
gpt4 key购买 nike

嗨,有谁知道是否有办法以允许它们仍然旋转的格式保存 matplotlib 3d 旋转图?也许是一个特定的程序?

代码是:

from numpy import *
import pylab as p
import mpl_toolkits.mplot3d.axes3d as p3

A=transpose(genfromtxt("Z:/Desktop/Project/bhmqntm-code/RichardsonRK4.csv", unpack=True, delimiter=','))

T=A[:,0]
X=A[:,1]
P=A[:,2]

fig=p.figure()
ax = p3.Axes3D(fig)
ax.scatter(X,P,T,s=1,cmap=cm.jet)
ax.set_xlabel('X')
ax.set_ylabel('P')
ax.set_zlabel('T')
p.show()#I would like this to be something like savefig('Z:/Desktop/Project/bhmqntm-code/plot3d_ex.png') but with a file ending of a program that would save the 3d capability

我不确定是否确实存在执行此操作的程序,但如果有人知道它会非常有帮助。谢谢。

最佳答案

我不认为 matplotlib 可以做到。
我找到的解决方案是制作图表以在浏览器中显示它们。例如使用 plot.ly .

一个例子:https://plot.ly/python/ipython-notebook-tutorial/#3d-plotting

关于python-2.7 - 保存 matplotlib 3d 旋转图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14152325/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com