interpolate.Rd
Interpolation of bivariate data
interpolate(x, y, z, ...)
A list
data(volcano)
x = seq(from=0, to=1, length.out = nrow(volcano))
y = seq(from=0, to=1, length.out = ncol(volcano))
xout = seq(from=0, to=1, length.out = 3*nrow(volcano))
yout = seq(from=0, to=1, length.out = 3*ncol(volcano))
zout = interpolate(x, y, volcano, xout, yout)
#> Warning: collinear points, trying to add some jitter to avoid collinearities!
#> Warning: success: collinearities reduced through jitter