Matplotlib:mpl_toolkits.mplot3d工
2018-08-24 本文已影响45人
ACphart
简介
-
mpl_toolkits.mplot3d
是Matplotlib里面专门用来画三维图的工具包,官方指南请点击此处《mplot3d tutorial》
使用
导入
- 使用
from mpl_toolkits.mplot3d import *
或者import mpl_toolkits.mplot3d as p3d
画图
- 有两种方式
fig = plt.figure()
ax = p3d.Axes3D(fig)
或者
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
- 画三维图需要先得到一个
Axes3D
对象,上面两种方式得到的ax
都是Axes3D
对象,接下来就可以调用函数在ax
上画图了。如下(IPython):
In [1]: %matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
import mpl_toolkits.mplot3d as p3d
fig = plt.figure()
ax = p3d.Axes3D(fig)
z = np.linspace(0, 15, 1000)
x = np.sin(z)
y = np.cos(z)
ax.plot(x, y, z, 'green')
效果如下:
- 更多详细的三维图还可以进我主页中《Matplotlib笔记》文集中查看。