R/vmte.R

Defines functions vmte

Documented in vmte

vmte <-
function(x,sill,range)
{
  if( range==0) return(rep(sill,length(x)))
  xt <- 4.5 * (x / range)
  sill *(1-(1+ xt)*exp(-xt))
}

Try the ltsk package in your browser

Any scripts or data that you put into this service are public.

ltsk documentation built on Sept. 3, 2023, 1:06 a.m.