Bivariate Linear Interpolation
stats-interpLinear.Rd
Bivariate Linear Interpolation. Options are available for gridded and pointwise interpolation.
Arguments
- x, y, z
for
linearInterp
the argumentsx
andy
are two numeric vectors of grid pounts, andz
is a numeric matrix or any other rectangular object which can be transformed by the functionas.matrix
into a matrix object. ForlinearInterpp
we consider either three numeric vectors of equal length or ify
andz
are NULL, a list with entriesx
,y
,z
, or named data frame withx
in the first,y
in the second, andz
in the third column.- gridPoints
an integer value specifying the number of grid points in
x
andy
direction.- xo, yo
for
linearInterp
two numeric vectors of data points spanning the grid, and forlinearInterpp
two numeric vectors of data points building pairs for pointwise interpolation.
Value
for linearInterp
, a list with at least three entries,
x
, y
and z
. The returned values, can be used
directly in persp
and contour
3D plotting methods.
for linearInterpp
, a data.frame
with columns
"x"
, "y"
, and "z"
.