R/mModeAutoCovariance.R

Defines functions mModeAutoCovariance

Documented in mModeAutoCovariance

mModeAutoCovariance <-
function(x, m, lag, center = TRUE, normalize = TRUE){
  if(center == TRUE) x <- tensorCentering(x)
  xm <- mFlatten(x, m)
  normalize_int <- normalize*1
  mAutoCovMatrix(xm, lag, normalize_int)
}

Try the tensorBSS package in your browser

Any scripts or data that you put into this service are public.

tensorBSS documentation built on June 2, 2021, 9:08 a.m.