gpt4 book ai didi

python - 如何使用 matplotlib (mpl3d) 绘制 X = 0 平面?

转载 作者:太空宇宙 更新时间:2023-11-04 03:35:06 25 4
gpt4 key购买 nike

Here is an answer that lets one plot a plane using matplotlib ,但如果使用向量 [1, 0, 0],则不会绘制任何内容!这是有道理的,因为代码的设置方式(网格在 X-Y 平面上,然后 Z 点确定表面。

那么,如何使用 matplotlib 绘制 X = 0 平面?

最佳答案

这不如您链接的示例通用,但它可以解决问题:

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

yy, zz = np.meshgrid(range(2), range(2))
xx = yy*0

ax = plt.subplot(projection='3d')
ax.plot_surface(xx, yy, zz)
plt.show()

enter image description here

关于python - 如何使用 matplotlib (mpl3d) 绘制 X = 0 平面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29394305/

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