matplotlib学习11之3D图像

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt
import numpy as np
from mpl_toolkits.mplot3d import Axes3D

fig = plt.figure()
ax = Axes3D(fig)
# X,Y value
x = np.arange(-4,4,0.25)
y = np.arange(-4,4,0.25)
X,Y = np.meshgrid(x,y)# x-y 平面的网格
R = np.sqrt(X**2+Y**2)
# height value
Z = np.sin(R)

# rstride 和 cstride 分别代表 row 和 column 的跨度
ax.plot_surface(X,Y,Z,rstride=1,cstride=1,cmap='rainbow',edgecolor='black')
# 添加 XY 平面的等高线
ax.contourf(X,Y,Z,zdir='z',offset=-2,cmap='rainbow')

ax.set_zlim(-2,2)

plt.savefig("/home/xuleilx/workspace/github/github_pages/public/images/3d_data.png")
plt.show()

结果:
3d_data

坚持原创技术分享,您的支持将鼓励我继续创作!