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.
在 python 中,使用命令绘制 2D 数组的 2D 轮廓非常简单contour。
contour
img=ones((4,4)) contour(img)
我想知道如果我有 3D 数组,是否存在类似的东西?
查看Axes3D模块,您还可以在其中找到轮廓函数。
Axes3D
从文档:
Axes3D.contour(X, Y, Z, *args, **kwargs) 创建 3D 等高线图。
Axes3D.contour(X, Y, Z, *args, **kwargs)
创建 3D 等高线图。