R/interp.new.R

Defines functions interp.new

Documented in interp.new

interp.new <-
  function(x, y, z,
           xo = seq(min(x), max(x), length = 40),
           yo = seq(min(y), max(y), length = 40), linear = FALSE,
           ncp = NULL, extrap = FALSE, duplicate = "error", dupfun = NULL)
{
    warning("interp.new() is deprecated, use interp()")
    interp(x, y, z,
           xo,
           yo, linear,
           extrap, duplicate, dupfun)
}

Try the akima package in your browser

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

akima documentation built on April 27, 2022, 5:07 p.m.