swh:1:snp:3468a425d6936f8836950b3324c1301cf9cb8335
Raw File
Tip revision: bb70ca0234c83af93b1d7483289fc2fef2b49750 authored by asardaes on 03 March 2018, 11:00:16 UTC
Bump version
Tip revision: bb70ca0
window.R
#' @details
#'
#' The windowing constraint uses a centered window. The calculations expect a value in
#' \code{window.size} that represents the distance between the point considered and one of the edges
#' of the window. Therefore, if, for example, \code{window.size = 10}, the warping for an
#' observation \eqn{x_i} considers the points between \eqn{x_{i-10}} and \eqn{x_{i+10}}, resulting
#' in \code{10(2) + 1 = 21} observations falling within the window.
#'
back to top