gpt4 book ai didi

python - 3D 中的 matplotlib 等高线标签

转载 作者:太空狗 更新时间:2023-10-29 21:12:02 32 4
gpt4 key购买 nike

有没有办法在 3D 绘图中放置等高线标签? Clabel 显然没有在 3D 中实现

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

x,y = np.meshgrid(np.linspace(-1,1,10),np.linspace(-1,1,10))
z=-(x**2+y**2)

fig,ax = plt.subplots()
C=ax.contour(x,y,z)
ax.clabel(C)

fig = plt.figure()
ax = fig.add_subplot(111,projection='3d')
C=ax.contour(x,y,z,zdir='z',offset=-2)
ax.clabel(C)

enter image description here enter image description here

最佳答案

作为clabel is not implemented并且返回值为None,暂时调用clabel()确实没有意义。您可以使用 C.levels 属性来 manually add labels to the graph .

不过,它不会具有很好的 inline 功能,可以将轮廓隐藏在标签下。

关于python - 3D 中的 matplotlib 等高线标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33122729/

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