我想找到时间序列之间的相似之处,并使用 fastdtw (https://github.com/slaypni/fastdtw/tree/master/fastdtw)在 python 中执行动态时间扭曲。计算出的距离有时会根据输入顺序而变化,尤其是对于长时间序列。这是一个例子:
x = np.random.rand(44)
y = np.random.rand(40)
d1, inx1 = fastdtw(y, x)
d2, inx2= fastdtw(y, x)
d1, d2
知道为什么吗?