R/compute_stoke_mean.R

Defines functions compute_stoke_mean

# function within radbrennie package to calculate the mean stoke based on max and min fun




compute_stoke_mean = function(maxfun, minfun) {
  smean = (maxfun+minfun)/2
  return(list(smean, maxfun))
}
Sidneygerst/radbrennie documentation built on March 11, 2020, 12:54 a.m.