Nothing
#' Time series warping envelopes
#'
#' This function computes the envelopes for DTW lower bound calculations with a Sakoe-Chiba band for
#' a given univariate time series using the streaming algorithm proposed by Lemire (2009).
#'
#' @export
#'
#' @param x A univariate time series.
#' @param window.size Window size for envelope calculation. See details.
#' @param error.check `r roxygen_error_check_param()`
#'
#' @details
#'
#' `r roxygen_window_details()`
#'
#' @return A list with two elements (lower and upper envelopes respectively): `lower` and `upper`.
#'
#' @note
#'
#' This envelope is calculated assuming a Sakoe-Chiba constraint for DTW.
#'
#' @references
#'
#' Lemire D (2009). ``Faster retrieval with a two-pass dynamic-time-warping lower bound .'' *Pattern
#' Recognition*, **42**(9), pp. 2169 - 2180. ISSN 0031-3203,
#' \doi{10.1016/j.patcog.2008.11.030},
#' \url{https://www.sciencedirect.com/science/article/pii/S0031320308004925}.
#'
#' @examples
#'
#' data(uciCT)
#'
#' H <- compute_envelope(CharTraj[[1L]], 18L)
#'
#' matplot(do.call(cbind, H), type = "l", col = 2:3)
#' lines(CharTraj[[1L]])
#'
compute_envelope <- function(x, window.size, error.check = TRUE) {
if (error.check) {
if (NCOL(x) > 1L) stop("The envelope can conly be computed for univariate series.")
check_consistency(x, "ts")
}
window.size <- check_consistency(window.size, "window")
window.size <- window.size * 2L + 1L
# NOTE: window.size is now window.size*2 + 1, thus the 2L below
if (window.size > (2L * NROW(x)))
stop("Window cannot be greater or equal than the series' length.")
.Call(C_envelope, x, window.size, PACKAGE = "dtwclust")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.