椭圆未显示python matplotib

2024-10-02 12:38:50 发布

您现在位置:Python中文网/ 问答频道 /正文

我想画一个椭圆。在

ax = plt.subplot(111)
ellipse = Ellipse(mean1L, ellipse_x, ellipse_y, angle=theta)
ax.add_artist(ellipse)
plt.show()

每一次争论似乎都很好,但它没有出现。 我做错什么了?在


Tags: addartistshowpltax椭圆thetaangle

热门问题