Raw File
func.mean.R
`func.mean` <- function(functions){
   apply(functions, 2, mean)
}

back to top