diss.DTWARP: Dynamic Time Warping Distance

View source: R/diss.R

diss.DTWARPR Documentation

Dynamic Time Warping Distance

Description

Computes Dynamic Time Warping distance between time series.

Usage

diss.DTWARP(x, y, ...)

Arguments

x

Numeric vector containing the first of the two time series.

y

Numeric vector containing the second of the two time series.

...

Additional parameters for the function. See link[dtw]{dtw}.

Details

This is basically a wrapper for dtw of the dtw package, intended for an easier discovery of the functionalities used in TSclust.

Value

The computed distance.

See Also

diss, link[dtw]{dtw}

Examples

## Create three sample time series
x <- cumsum(rnorm(100))
y <- cumsum(rnorm(100))
diss.DTWARP(x, y)


TSclust documentation built on June 8, 2025, 11:05 a.m.