Revision f3fa0a2ccb9bde3782d3555dfc9ebd3381d1757f authored by Toni Giorgino on 30 November 2007, 00:00:00 UTC, committed by Gabor Csardi on 30 November 2007, 00:00:00 UTC
1 parent 8635857
window.R
###############################################################
# #
# Author: Toni Giorgino <toni.giorgino@gmail.com> #
# Laboratory for Biomedical Informatics #
# University of Pavia - Italy #
# www.labmedinfo.org #
# #
# $Id: window.R 30 2007-12-06 18:55:28Z tonig $
# #
###############################################################
##
## Document in dtwWindowingFunctions.Rd
##
## no warping window: no restrictions
`noWindow` <-
function(iw,jw,...) {
return(TRUE);
}
## A band around the diagonal. The band includes the diagonal +-
## window.size.
`sakoeChibaWindow` <-
function(iw,jw,window.size,...) {
return(abs(jw-iw)<=window.size);
}
## A band around the diagonal. The band includes the segment
## connecting [1,1] to [query.size,template.size] window.size,
## measured along the second index (columns)
`slantedBandWindow` <-
function(iw,jw,query.size,template.size,window.size,...) {
diagj<-(iw*template.size/query.size);
return(abs(jw-diagj)<=window.size);
}
## "Itakura" parallelogram: see documentation.
##
`itakuraWindow` <-
function(iw,jw,query.size,template.size,...) {
## Shorthands
n<-query.size;
m<-template.size;
ok<- (jw < 2*iw) &
(iw <= 2*jw) &
(iw >= n-1-2*(m-jw)) &
(jw > m-1-2*(n-iw)) ;
return(ok);
}
## Plot a sample of the windowing function
dtwWindow.plot <- function(fun,query.size=200,template.size=220,...) {
n<-query.size;
m<-template.size;
mm<-matrix(0,n,m);
mm[fun(row(mm),col(mm),query.size=n,template.size=m,...)]<-1;
image( z=mm,
x=1:n,
y=1:m,
xlab=sprintf("Query: samples 1..%d",n),
ylab=sprintf("Template: samples 1..%d",m),
...
);
}
Computing file changes ...