(C++) Sum Distances Between Consecutive Samples in a Time Series
(C++) Sum Distances Between Consecutive Samples in a Time Series
Computes the cumulative sum of distances between consecutive samples in a univariate or multivariate time series. NA values should be removed before using this function.
auto_distance_cpp(x, distance ="euclidean")
Arguments
x: (required, numeric matrix) univariate or multivariate time series.
distance: (optional, character string) distance name from the "names" column of the dataset distances (see distances$name). Default: "euclidean"
Returns
numeric
Examples
#simulate a time seriesx <- zoo_simulate()#compute auto distanceauto_distance_cpp( x = x, distance ="euclidean")
See Also
Other Rcpp_auto_sum: auto_sum_cpp(), auto_sum_full_cpp(), auto_sum_path_cpp(), subset_matrix_by_rows_cpp()