gpt4 book ai didi

python matplotlib 极坐标图

转载 作者:太空狗 更新时间:2023-10-30 02:27:20 24 4
gpt4 key购买 nike

我正在使用以下代码创建正弦曲线的极坐标图。

import numpy as np
import matplotlib.pyplot as plt


theta = np.arange(0, 2*np.pi, .01)[1:]
plt.polar(theta, sin(theta))
plt.show()

产生:

enter image description here

但我想对称地绘制它,像这样:

enter image description here

我怎样才能得到我想要的结果?

最佳答案

matplotlib polar 允许负半径。所以,如果你想要对称图,你需要绘制 sin 的绝对值:

polar(theta, abs(sin(theta)))

enter image description here

关于python matplotlib 极坐标图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41457234/

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