为了账号安全,请及时绑定邮箱和手机立即绑定

Matplotlib 极坐标轮廓图:跨 theta 原点连续

Matplotlib 极坐标轮廓图:跨 theta 原点连续

慕尼黑5688855 2021-10-12 10:15:15
我有格式E( freq, theta) 的数据,其中E是二维数组,freq和theta是一维数组。以下代码部分生成附图。但是,我想使轮廓图在 0 度原点上连续(即,沿 0 方位角没有白色空间的楔形)。我已经浏览了 matplotlib 文档,并非常广泛地发布了问题,但似乎无法找到解决此问题的方法。有任何想法吗?代码:[r, th] = np.meshgrid(freq,theta)fig = plt.figure()ax = fig.add_subplot(111, polar=True)ax.set_theta_zero_location('N')ax.set_theta_direction(-1)cntf = ax.contourf(th,r,np.log10(E),cmap='jet',extend='both',    levels=np.linspace(np.mean(np.log10(E)), np.amax(np.log10(E)), 15))ax.set_rlim(0, .3)label_position=ax.get_rlabel_position()ax.text(np.radians(label_position+25),ax.get_rmax()/1.5,'f (Hz)',        rotation=label_position,ha='center',va='center')产生的情节:
查看完整描述

1 回答

?
Helenr

TA贡献1780条经验 获得超3个赞

//img1.sycdn.imooc.com//6164efd90001c6ae02960280.jpg

dtheta = np.diff(theta).mean()

wrp_theta = np.concatenate((theta, theta[-1:] + dtheta))

wrp_E = np.concatenate((E, E[0:1, :]), axis=0)


查看完整回答
反对 回复 2021-10-12
  • 1 回答
  • 0 关注
  • 283 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信