-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using with x/y sizes of (n, m) where m >1 #44
Comments
The function passed as |
@slaypni Hi, thanks for the great package. I have a couple of points to clarify.
Can you please explain how can we use the metric. I could not find the documentation for this in the repository. (original paper mentioned in the repo: https://www.semanticscholar.org/paper/FastDTW%3A-Toward-Accurate-Dynamic-Time-Warping-in-Salvador-Chan/05a20cde15e172fc82f32774dd0cf4fe5827cad2) Thanks. |
Please take a look at the test code. There are 1d and 2d examples. |
I appreciate your package - it has made my life much easier. However, I have a question that I was hoping you could resolve:
In the case of:
X being an array of size (n,1), and
Y being an array of size (m,1), where m/n are number of samples,
What if I had arrays of:
X being size (n,2), and
Y being size (n,2).
Example of use case being if I have two related time series measurements such as machine vibration frequency and machine operating temperature. Both are distinct measurements, and when doing a manual correlation you can better match events when using both indicators in tandem than just one.
The code certainly runs in both scenarios, and outputs unique paths when I run just component 1 vs. just component 2 vs. both 1 and 2 at same time.
However, with existing documentation it's hard to understand the workings of what is going on.
The text was updated successfully, but these errors were encountered: