gpt4 book ai didi

python - matplotlib 中的曲面图

转载 作者:IT老高 更新时间:2023-10-28 21:11:04 26 4
gpt4 key购买 nike

我有一个 3 元组列表,表示 3D 空间中的一组点。我想绘制一个覆盖所有这些点的曲面。

mplot3d 包中的 plot_surface 函数要求参数 X、Y 和 Z 为二维数组。 plot_surface 是绘制表面的正确函数吗?如何将数据转换为所需的格式?

data = [(x1,y1,z1),(x2,y2,z2),.....,(xn,yn,zn)]

最佳答案

对于表面,它与 3 元组列表有点不同,您应该在 2d 数组中为域传递一个网格。

如果你只有一个 3d 点列表,而不是某个函数 f(x, y) -> z,那么你就会遇到问题,因为有多种方法可以对 3d 进行三角测量点云到表面。

这是一个光滑表面的例子:

import numpy as np
from mpl_toolkits.mplot3d import Axes3D
# Axes3D import has side effects, it enables using projection='3d' in add_subplot
import matplotlib.pyplot as plt
import random

def fun(x, y):
return x**2 + y

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
x = y = np.arange(-3.0, 3.0, 0.05)
X, Y = np.meshgrid(x, y)
zs = np.array(fun(np.ravel(X), np.ravel(Y)))
Z = zs.reshape(X.shape)

ax.plot_surface(X, Y, Z)

ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')

plt.show()

3d

关于python - matplotlib 中的曲面图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9170838/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com