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.
在我的 pcolor 图中,我想标记轮廓,但对于不依赖于 pcolor 的 Z 值(由级别指定)但基于特定 (x,y) 索引的值。我怎样才能做到这一点 ?
在此先感谢,乔蒂卡
我不确定这是否是您要查找的内容,但您可以执行以下操作来获得围绕特定 x 和 y 索引集的轮廓:
x, y = np.meshgrid(np.arange(10), np.arange(10)) z = np.zeros(x.shape) z[(x<3) & (y>5)] = 1 plt.contour(x, y, z) plt.show()
或者如果您的问题是您想在特定 x,y 位置的 z 值上建立等高线:
V = [z[1,2], z[2,3], z[3,4]] plt.contour(x, y, z, V)