我有一系列展开阶段,其中一些展开错误包括 +/- Pi 的倍数的跳跃:
import numpy
a = numpy.array([0.5, 1.3, 2.4, 10.3, 10.8, 10.2, 7.6, 3.2, 2.9])
在此示例中,在 2.4 和 10.3 之间有 2 个周期的第一次跳跃,在 7.6 和 3.2 之间有 -1 个周期的跳跃。我想删除跳跃。问题是,当您删除一个跳跃时,您需要相应地增加或减少该系列的其余部分,而不仅仅是跳跃发生的值。
有没有更清洁的方法(没有/更少的循环,更快)这样做:
jumpsexist = 1
while jumpsexist:
# Look for absolute differences greater than Pi
jump = numpy.abs((numpy.roll(a,-1) -a)) > numpy.pi
if jump[:-1].any():
# Find the index of the first jump
jumpind = numpy.argmax(jump) + 1
# Calculate the number of cycles in that jump
cycles = ((a[jumpind] - a[jumpind- 1]) / numpy.pi).astype("Int8")
# Remove the cycles
a[jumpind:] -= cycles * numpy.pi
else:
break