bilinear: Bilinear interpolation

Description Usage Arguments Details Value See Also Examples

View source: R/bilinear.R

Description

Finds a bilinear interpolation bounded by four points

Usage

1
bilinear(x, y, z, newx, newy)

Arguments

x

vector of two x values representing x_1 and x_2

y

vector of two y values representing y_1 and y_2

z

2x2 matrix if z values

newx

vector of new x values to interpolate

newy

vector of new y values to interpolate

Details

bilinear finds a bilinear interpolation bounded by four corners

Value

a vector of interpolated z values at (x, y)

See Also

Other interp: bezier, cubicspline(), linterp(), nn(), polyinterp(), pwiselinterp()

Other algebra: cubicspline(), division, fibonacci(), horner(), isPrime(), linterp(), nthroot(), polyinterp(), pwiselinterp(), quadratic()

Examples

1
2
3
4
5
6
x <- c(2, 4)
y <- c(4, 7)
z <- matrix(c(81, 84, 85, 89), nrow = 2)
newx <- c(2.5, 3, 3.5)
newy <- c(5, 5.5, 6)
bilinear(x, y, z, newx, newy)

cmna documentation built on July 14, 2021, 5:11 p.m.