R/Merge.R

Defines functions Merge

Merge <- function(fix, stimmat, env = parent.frame(n = 3)) {
  
  fix <- BuildSequences(fix)
  fix <- Phase1(fix, stimmat)
  fix <- Phase2(fix, stimmat)
  fix <- Phase3(fix, stimmat)
  fix <- Phase4(fix, stimmat)
  fix <- Phase5(fix, stimmat)
  fix <- AssignLine(fix, stimmat)
  
  return(fix)
  
}
sascha2schroeder/popEye documentation built on Jan. 19, 2024, 4:46 a.m.