有没有可能使用matplotlib来获得这样的东西: signlar with circular path 该图是获取的信号,但是通过圆形路径包裹或绘制。任何的想法? 原始信号: Original signal
答案 0 :(得分:0)
你可以试试极地情节:
import numpy as np
import matplotlib.pyplot as plt
circum = np.linspace(0,2*np.pi, 1000)
rad = 2+np.random.random(1000)
fig = plt.figure()
ax = fig.add_subplot(111, projection='polar')
ax.plot(circum, rad)
ax.set_rlim(0,5)
fig.show()
您需要将x-y数据转换为r-theta数据(这不是太难)。