gpt4 book ai didi

python - 添加圆柱体绘图

转载 作者:太空狗 更新时间:2023-10-30 00:25:07 24 4
gpt4 key购买 nike

我想在我的 3D 散点图中添加一个透明圆柱体。我该怎么做?

这是我用来制作情节的代码:

fig = plt.figure(2, figsize=(8, 6))
ax = fig.add_subplot(111, projection='3d')

ax.scatter(X, Y, Z, c=Z,cmap=plt.cm.Paired)
ax.set_xlabel("X")
ax.set_ylabel("Y")
ax.set_zlabel("Z")
plt.xticks()

最佳答案

今天,我必须在我的项目中做同样的事情,即在结果中添加一个透明圆柱体。这是我最终得到的代码。所以分享给大家,学习一下

import numpy as np

def data_for_cylinder_along_z(center_x,center_y,radius,height_z):
z = np.linspace(0, height_z, 50)
theta = np.linspace(0, 2*np.pi, 50)
theta_grid, z_grid=np.meshgrid(theta, z)
x_grid = radius*np.cos(theta_grid) + center_x
y_grid = radius*np.sin(theta_grid) + center_y
return x_grid,y_grid,z_grid

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

Xc,Yc,Zc = data_for_cylinder_along_z(0.2,0.2,0.05,0.1)
ax.plot_surface(Xc, Yc, Zc, alpha=0.5)

plt.show()

你会得到这个美丽的身影。 enter image description here

关于python - 添加圆柱体绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26989131/

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