R/CenterTSIMD.R

Defines functions CenterTSIMD

CenterTSIMD <- function(x){
  xm = apply(x,2,mean)
  xc = t(t(x) - xm)
  return(xc)
}
hectorhaffenden/TSIMD documentation built on Nov. 4, 2019, 1:30 p.m.