R/tau_correct.R

tau_correct = function(z, tau=2){
  
  x = seq_along(z)
  
  correction = c(tau * diff(z), 0)
  
  z = z + correction
  
  return(z)
}
lawinslow/paulplot documentation built on May 20, 2019, 8:25 p.m.