diss.EUCL {TSclust}R Documentation

Euclidean Distance

Description

Computes Euclidean distance between time series.

Usage

diss.EUCL(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.

Value

The computed distance.

See Also

diss, dist

Examples

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

[Package TSclust version 1.3.1 Index]