https://github.com/cran/dtw
Raw File
Tip revision: 07f4472642283665752cb0b4a03836d0698fe255 authored by Toni Giorgino on 17 June 2008, 00:00:00 UTC
version 1.12-5
Tip revision: 07f4472
dtw-internal.R
###############################################################
#                                                             #
#   Author: Toni Giorgino <toni.giorgino@gmail.com>           #
#       Laboratory for Biomedical Informatics                 #
#       University of Pavia - Italy                           #
#       www.labmedinfo.org                                    #
#                                                             #
#   $Id: dtw-internal.R 94 2008-01-08 16:44:46Z tonig $
#                                                             #
###############################################################

##
## $Id: dtw-internal.R 94 2008-01-08 16:44:46Z tonig $
##

## Internal functions for the dtw package.
## Not to be used by the user.


## Function applying dtw and only returning the
## distance
dtwpairdist <- function(...) {
  dtw(distance.only=TRUE,...)$distance;
}
back to top