当前位置: > python用matpiotilb画三维曲面图...
题目
python用matpiotilb画三维曲面图
我找了很多例子 ,都是给出X轴和Y轴的取值范围,然后再给出Z=f(x,y)的方法画图.
请教一下大神,能不能根据点的坐标的方式画?
例如给出:
X Y Z(Z给定,无规律)
0 0 1
1 0 12
2 0 14
3 0 1
4 0 15
5 0 1
6 0 1
7 0 15
8 0 11
9 0 1
0 1 13
1 1 19
2 1 1
3 1 11
4 1 1
5 1 15
6 1 1
7 1 11
8 1 1
9 1 15
0 2 13
1 2 1
2 2 11
3 2 13
4 2 1
5 2 1
6 2 14
7 2 15
8 2 1
9 2 19
然后可以画出所有Z点连成的平面呢?
请给出具体例子或者代码 谢谢了!

提问时间:2021-03-13

答案
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
X = [1, 1, 2, 2]
Y = [3, 4, 4, 3]
Z = [1, 2, 1, 1]
ax.plot_trisurf(X, Y, Z)
plt.show()
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
1,人们染上烟瘾,最终因吸烟使自己丧命.
版权所有 CopyRight © 2012-2019 超级试练试题库 All Rights Reserved.