给我用python和dtw包写一个dtw算法的代码
时间: 2023-03-12 14:50:57 浏览: 113
DTW算法实现代码_C++_dtw_dtw算法c++_
5星 · 资源好评率100%
我可以为您提供一段示例代码:import numpy as np
from dtw import dtwx = np.array([0, 0, 1, 1, 2, 4, 2, 1, 2, 0]).reshape(-1, 1)
y = np.array([1, 1, 1, 2, 2, 2, 3, 2, 1, 0]).reshape(-1, 1)dist, cost, acc, path = dtw(x, y, dist=lambda x, y: np.linalg.norm(x - y, ord=1))print('Minimum distance found:', dist)
阅读全文