dtw

How to get distance matrix using dynamic time warping?

How to get distance matrix using dynamic time warping? Question: I have 6 time series values as follows. import numpy as np series = np.array([ [0., 0, 1, 2, 1, 0, 1, 0, 0], [0., 1, 2, 0, 0, 0, 0, 0, 0], [1., 2, 0, 0, 0, 0, 0, 1, 1], [0., 0, 1, …

Total answers: 2