Problem 43478. Calculate the dynamic time warping similarity
Dynamic time warping (DTW) is an algorithm for measuring the similarity between two time series that may have been acquired at different speeds. DTW aims to find an optimal match between two time series, such that the sum of the Euclidean distances between matching points is minimal.
Image courtesy of Wikipedia.
The image illustrates the DTW solution for two time series (which have been shifted vertically for better visualization). The dotted lines indicate matches between points of each series, and in order to represent a valid time warp they should never cross.
Pseudocode for the DTW algorithm can be found at its Wikipedia entry.
Given two time series, calculate the dynamic time warping similarity between them.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers5
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6234 Solvers
-
Remove the small words from a list of words.
1496 Solvers
-
Check to see if a Sudoku Puzzle is Solved
321 Solvers
-
266 Solvers
-
Back to basics 12 - Input Arguments
596 Solvers
More from this Author2
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!