如何在matplotlib中进行3D革命?

时间:2012-11-17 16:37:18

标签: python numpy matplotlib

假设您有一条2D曲线,例如:

from matplotlib import pylab
t = numpy.linspace(-1, 1, 21)
z = -t**2
pylab.plot(t, z)

产生

http://i.imgur.com/feQzk.png

我想进行革命以获得3d图(参见http://reference.wolfram.com/mathematica/ref/RevolutionPlot3D.html)。绘制3d表面不是问题,但它不会产生我期望的结果:

http://i.imgur.com/ljXHQ.png

如何在3d图中执行此蓝色曲线的旋转?

1 个答案:

答案 0 :(得分:4)

你的人物上的情节似乎使用了笛卡尔网格。在matplotlib网站上有一些3D圆柱函数的例子,如Z = f(R)(这里:http://matplotlib.org/examples/mplot3d/surface3d_radial_demo.html)。 这就是你要找的? 以下是我的函数Z = -R ** 2:Plot of Z = -R**2 function

要为您的函数添加截断,请使用以下示例: (需要matplotlib 1.2.0)

from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
ax = fig.gca(projection='3d')
X = np.arange(-5, 5, 0.25)
Y = np.arange(-5, 5, 0.25)
X, Y = np.meshgrid(X, Y)

Z = -(abs(X) + abs(Y))

## 1) Initial surface
# Flatten mesh arrays, necessary for plot_trisurf function
X = X.flatten()
Y = Y.flatten()
Z = Z.flatten()

# Plot initial 3D surface with triangles (more flexible than quad)
#surfi = ax.plot_trisurf(X, Y, Z, cmap=cm.jet, linewidth=0.2)

## 2) Cut off
# Get desired values indexes
cut_idx = np.where(Z > -5)

# Apply the "cut off"
Xc = X[cut_idx]
Yc = Y[cut_idx]
Zc = Z[cut_idx]

# Plot the new surface (it would be impossible with quad grid)
surfc = ax.plot_trisurf(Xc, Yc, Zc, cmap=cm.jet, linewidth=0.2)

# You can force limit if you want to compare both graphs...
ax.set_xlim(-5,5)
ax.set_ylim(-5,5)
ax.set_zlim(-10,0)

plt.show()

脸谱的结果:

surfi

和surfc:

surfc

相关问题