在Matplotlib中叠加contourf和surface_plot
要在matplotlib中叠加contourf和surface_plot,可以采取以下步骤−
- 使用numpy初始化变量 delta,xrange,yrange, x和y。
-
使用 figure() 方法创建一个新的图或激活一个现有的图。
-
获取当前的坐标轴,其中 projection=’3d’ 。
-
使用x和y数据点创建一个三维countour图。
-
使用x和y数据点绘制曲面。
-
使用 show() 方法显示图形。
示例
from matplotlib import pyplot as plt
import numpy as np
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
delta = 0.025
xrange = np.arange(-5.0, 20.0, delta)
yrange = np.arange(-5.0, 20.0, delta)
x, y = np.meshgrid(xrange, yrange)
fig = plt.figure()
ax = fig.gca(projection='3d')
ax.contour(x, y, (np.sin(x) - np.cos(y)), [0])
ax.plot_surface(x, y, (np.sin(x) - np.cos(y)), cmap="afmhot_r")
plt.show()