dis_dtw_2 | R Documentation |
dis_dtw_2
returns a pairwise distance matrix based on one of the multivariate
extensions of the well-known dynamic time warping distance \insertCiteshokoohi2017generalizingmlmts.
dis_dtw_2(X, normalization = FALSE, ...)
X |
A list of MTS (numerical matrices). |
normalization |
Logical. If |
... |
Additional parameters for the function. See |
Given a collection of MTS, the function returns the pairwise distance matrix, where the distance between two MTS is defined as the multivariate extension of the dynamic time warping distance which forces all dimensions to warp identically, in a single warping matrix.
The computed pairwise distance matrix.
Ángel López-Oriona, José A. Vilar
shokoohi2017generalizingmlmts
dis_dtw_2
, dis_mahalanobis_dtw
toy_dataset <- AtrialFibrillation$data[1 : 10] # Selecting the first 10 MTS from the
# dataset AtrialFibrillation
distance_matrix <- dis_dtw_2(toy_dataset) # Computing the pairwise
# distance matrix based on the distance dis_dtw1 without normalization
distance_matrix_normalized <- dis_dtw_2(toy_dataset, normalization = TRUE)
# Computing the pairwise distance matrix based
# distance matrix based on the distance dis_dtw1 with normalization
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.