R/utils-eco_interp.R

eco_interp <- function(x, x1, y1, x2, y2) {

  y = ((x - x1) * (y2 - y1) / (x2 - x1)) + y1

  return(y)
}
tyluRp/treeco documentation built on May 26, 2019, 5:40 p.m.