Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 3 个一维数组。每个数组由浮点数组成。第一个数组表示 x 轴坐标。第二个y,第三个z。如果将每个数组中的对应点放入有序三元组中,则在 xyz 空间中有一个点。这些数组是从文件中读入的。在这个应用程序中,z 实际上是一个厚度。在这些情况下创建曲面图的最佳方法是什么。
最简单的方法是通过导入 mlab 在 ipython 中以交互方式启动 mayavi,然后使用它的 surf 函数:
import mlab mlab.surf(x,y,z)
希望这可以帮助。