DTW | R Documentation |
This function evaluates the Dynamic Time Warping (DTW) distance between two quaternion time series (QTS).
DTW(
qts1,
qts2,
resample = TRUE,
disable_normalization = FALSE,
distance_only = FALSE,
step_pattern = dtw::symmetric2
)
qts1 |
An object of class qts. |
qts2 |
An object of class qts. |
resample |
A boolean specifying whether the QTS should be uniformly
resampled on their domain before computing distances. Defaults to |
disable_normalization |
A boolean specifying whether quaternion
normalization should be disabled. Defaults to |
distance_only |
A boolean specifying whether to only compute distance
(no backtrack, faster). Defaults to |
step_pattern |
A dtw::stepPattern specifying the local constraints on the warping path. Defaults to dtw::symmetric2 which uses symmetric and normalizable warping paths with no local slope constraints. See dtw::stepPattern for more information. |
If no evaluation grid is provided, the function assumes that the two input QTS are evaluated on the same grid.
An object of class dtw::dtw storing the dynamic time warping results.
DTW(vespa64$igp[[1]], vespa64$igp[[2]])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.