gpt4 book ai didi

Python:有没有办法用 Matplotlib 绘制 "partial"曲面图?

转载 作者:太空狗 更新时间:2023-10-29 21:42:19 25 4
gpt4 key购买 nike

我想用 Matplotlib 绘制一个“部分”曲面图,如下图所示 example

请注意,它不是 X-Y 平面上的完整网格,而是从顶 View 中缺少一个角。以下是我试过但没有用的代码。

import numpy as np
from matplotlib import pyplot
from mpl_toolkits.mplot3d import Axes3D

X = np.array([[0,1],
[0,1,2],
[0,1,2,3],
])
Y = np.array([[0,0],
[1,1,1],
[2,2,2,2],
])
Z = np.array([[0.5, 0.6],
[0.7, 0.8, 0.9],
[1.0, 1.1, 1.2, 1.3],
])
fig = pyplot.figure()
ax = fig.add_subplot(111, projection='3d')
ax.plot_surface(X,Y,Z)

错误是:

ValueError: setting an array element with a sequence.

任何指针将不胜感激!谢谢!

最佳答案

通过在您不想绘制的区域中使用 Z 的 np.nan 值,您可以轻松地做到这一点。这是 this example 的修改版本但随着剪切,如下所示:

enter image description here

from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
from matplotlib.ticker import LinearLocator, FormatStrFormatter
import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
ax = fig.gca(projection='3d')
X = np.arange(-5, 5, 0.25)
Y = np.arange(-5, 5, 0.25)
X, Y = np.meshgrid(X, Y)
R = np.sqrt(X**2 + Y**2)
Z = np.sin(.5*R)

Z[X+Y>4.] = np.nan # the diagonal slice

surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm,
linewidth=0, antialiased=False, vmin=-1, vmax=1)
ax.set_zlim(-1.01, 1.01)

ax.zaxis.set_major_locator(LinearLocator(10))
ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f'))

fig.colorbar(surf, shrink=0.5, aspect=5)

plt.show()

这里还要注意,我必须在 plot 命令中使用 vminvmax 关键字,否则 nans 会抛出颜色缩放。

关于Python:有没有办法用 Matplotlib 绘制 "partial"曲面图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36106592/

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